/* 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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background: #F5F5F2;
  color: #234F5E;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #D9A441;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #234F5E;
  text-decoration: underline;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
button, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  background: #D9A441;
  color: #234F5E;
  padding: 12px 28px;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(217, 164, 65, 0.12);
  transition: background 0.22s, color 0.2s, transform 0.12s;
  outline: none;
  display: inline-block;
  margin-top: 16px;
}
button:hover, .cta-button:hover, .cta-button:focus {
  background: #234F5E;
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px -2px rgba(35,79,94,0.12);
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

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

/* HEADER & NAVIGATION */
header {
  background: #234F5E;
  color: #fff;
  width: 100%;
  padding: 0;
  z-index: 50;
  box-shadow: 0 4px 24px 0 rgba(35,79,94,0.08);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px 18px 16px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #F5F5F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D9A441;
  text-shadow: 0 0 2px #fff;
}
header .cta-button {
  margin: 0 0 0 10px;
  background: #D9A441;
  color: #234F5E;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(217, 164, 65, 0.10);
}
header .cta-button:hover, header .cta-button:focus {
  background: #fff;
  color: #234F5E;
  box-shadow: 0 8px 28px -4px rgba(217,164,65,0.18);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1002;
  font-size: 32px;
  background: #234F5E;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 16px 0 rgba(35,79,94,0.09);
  cursor: pointer;
  transition: background 0.22s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #D9A441;
  color: #234F5E;
  outline: 2px solid #D9A441;
}
.mobile-menu {
  position: fixed;
  z-index: 1102;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #234F5E;
  color: #fff;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.83,0,0.17,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 4px 0 32px 0 rgba(35,79,94,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 8px 0 60px 0 rgba(35,79,94,0.18);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 32px;
  background: #D9A441;
  color: #234F5E;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  margin: 24px 22px 12px 0;
  box-shadow: 0 2px 8px 0 rgba(217, 164, 65, 0.10);
  cursor: pointer;
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #D9A441;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 36px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding: 12px 0 12px 0;
  letter-spacing: 0.07em;
  transition: color 0.25s;
  width: 100%;
  border-left: 5px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D9A441;
  background: rgba(217,164,65,0.05);
  border-left: 5px solid #D9A441;
  padding-left: 18px;
}
@media (max-width: 1023px) {
  .main-nav, header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: #D9A441;
  color: #234F5E;
  width: 100%;
  padding: 58px 0 48px 0;
  display: flex;
  align-items: center;
  min-height: 360px;
  box-shadow: 0 8px 32px 1px rgba(217, 164, 65, 0.10);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero .subheadline {
  font-size: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
  color: #12313a;
  max-width: 610px;
}
.hero .cta-button {
  background: #234F5E;
  color: #fff;
  font-size: 20px;
  border-radius: 32px;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #fff;
  color: #234F5E;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 6px 32px -4px rgba(35,79,94,0.09);
  transition: box-shadow 0.2s, transform 0.1s;
  margin-bottom: 20px;
  position: relative;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 14px 54px -4px #D9A44166;
  transform: translateY(-4px) 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FEATURES & USP */
.features, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 24px 0 12px 0;
  padding: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px -4px rgba(35,79,94,0.07);
  padding: 32px 24px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 210px;
  transition: box-shadow 0.19s, transform 0.10s;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #234F5E;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 15px;
  color: #56707B;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 18px 60px -4px #D9A44155;
  transform: scale(1.022);
}
.usp-list li {
  background: #D9A441;
  color: #234F5E;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 10px 0 rgba(217,164,65,0.07);
  margin-right: 14px;
}

/* TESTIMONIALS */
.testimonials, .testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(35,79,94,0.10);
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 6px solid #D9A441;
  font-size: 17px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222f38;
  position: relative;
  transition: box-shadow 0.18s, transform 0.1s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 36px 0 #234F5E18;
  transform: scale(1.016);
}
.testimonial-card p {
  color: #222f38;
  line-height: 1.6;
}
.testimonial-meta {
  font-size: 14px;
  color: #56707B;
  font-weight: 700;
}
.overall-rating, .star-rating-average {
  margin: 0;
  padding: 14px 0 0 0;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #234F5E;
  gap: 9px;
}
.overall-rating img, .star-rating-average img {
  height: 20px;
  width: auto;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .testimonial-slider, .card-container, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* PROJECTS + CARDS */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.project-item {
  background: #fff;
  border-left: 6px solid #234F5E;
  border-radius: 15px;
  box-shadow: 0 3px 12px 0 #234F5E15;
  padding: 24px 18px 18px 20px;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.project-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 2px;
}
.project-type-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.project-type-highlight li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #D9A441;
  background: #234F5E;
  border-radius: 16px;
  padding: 10px 17px;
  margin-bottom: 0;
}
.project-statistics, .quality-assurance {
  color: #234F5E;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  padding: 13px 17px;
  margin: 14px 0 0 0;
  box-shadow: 0 2px 10px 0 rgba(217,164,65,0.07);
}
/* Case-study and Cards */
.case-study {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 #234F5E13;
  padding: 27px 22px;
  margin: 22px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 6px solid #D9A441;
}
.case-study h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 3px;
}

/* TEAM SECTION */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 #234F5E15;
  padding: 23px 17px 19px 17px;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 280px;
  margin-bottom: 20px;
}
.team-member h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #234F5E;
  margin-bottom: 4px;
}
.skills-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style-type: disc;
  margin-left: 20px;
}
.values-icons {
  display: flex;
  gap: 19px;
  margin-top: 8px;
}
.values-icons img {
  height: 36px;
  width: auto;
}

/* SERVICE CATEGORIES */
.service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 18px 0 10px 0;
  padding: 0;
}
.service-categories li {
  background: #234F5E;
  color: #fff;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 15px;
  font-weight: 700;
  font-size: 15px;
}

/* PROCESS ICONS */
.process-icons {
  display: flex;
  gap: 19px;
  margin-top: 8px;
}
.process-icons img {
  height: 36px;
  width: auto;
}

/* STEP-LIST */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 7px 0;
  padding-left: 18px;
}

/* CONTACT */
.contact-info-snippet {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 17px 0;
  font-size: 17px;
}
.contact-info-snippet img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  height: 24px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details ul {
  margin-left: 0;
  padding-left: 0;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  font-size: 17px;
}
.contact-details img {
  height: 22px;
  margin-right: 9px;
}
.quick-contact-methods {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234F5E;
  font-weight: 900;
  margin-bottom: 7px;
  text-shadow: 1px 2px 0 #F5F5F2, 0 1px 0 #D9A44128;
}
h1 { font-size: 36px; font-weight: 900; letter-spacing: 1px; }
h2 { font-size: 28px; font-weight: 800; letter-spacing: 0.5px; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
@media (min-width: 740px) {
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  h3 { font-size: 22px; }
  h4 { font-size: 19px; }
}
p, .text-section {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #234F5E;
  margin-bottom: 11px;
  line-height: 1.7;
  letter-spacing: 0.015em;
}
.text-section {
  margin-bottom: 11px;
}
strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #D9A441;
}
small {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #56707B;
  font-size: 12px;
}

/* NEXT-STEPS */
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style-type: disc;
  margin-left: 21px;
}

/* FOOTER */
footer {
  background: #234F5E;
  color: #fff;
  padding: 36px 0 14px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #D9A441;
  font-weight: 700;
  font-size: 15px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact, .footer-copy {
  color: #F5F5F2;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  word-break: break-all;
}
.footer-copy {
  font-size: 13px;
  margin-top: 6px;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  footer .container {
    gap: 10px;
    padding: 0 4px;
  }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1023px) {
  .main-nav, header .cta-button {
    display: none;
  }
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 2vw;
  }
  h1 { font-size: 29px; }
  h2 { font-size: 23px; }
  h3 { font-size: 17px; }
  .hero {
    padding: 38px 0 24px 0;
    min-height: 210px;
  }
  header .container {
    flex-direction: row;
    gap: 9px;
  }
}

/* ANIMATIONS */
.cta-button, .feature-item, .card, .testimonial-card, .project-item, .team-member, .case-study {
  transition: box-shadow 0.18s, background 0.16s, transform 0.13s;
}
.testimonial-card, .card, .feature-item, .project-item, .team-member, .case-study {
  will-change: transform, box-shadow;
}

/* Cookie Consent Banner and Modal */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #234F5E;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 22px 16px;
  z-index: 1700;
  display: flex;
  flex-direction: column;
  gap: 17px;
  box-shadow: 0 -2px 22px -5px #234F5E44;
  align-items: center;
  animation: cookieBannerSlideIn 0.60s cubic-bezier(0.73,0,0.47,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  background: #D9A441;
  color: #234F5E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 1px 8px 0 #D9A44114;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #fff;
  color: #D9A441;
}
.cookie-consent-banner .cookie-link {
  color: #D9A441;
  text-decoration: underline;
  font-size: 16px;
  margin-left: 12px;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,79,94,0.82);
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.40s ease;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #234F5E;
  border-radius: 19px;
  max-width: 430px;
  width: 93vw;
  box-shadow: 0 10px 48px -8px #234F5E44;
  padding: 36px 28px 28px 28px;
  position: relative;
  animation: slideUpCookieModal 0.3s cubic-bezier(0.83,0,0.17,1);
}
@keyframes slideUpCookieModal {
  from { transform: translateY(90px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #234F5E;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  gap: 13px;
}
.cookie-modal .cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 22px;
  background: #D9A44155;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal .cookie-toggle.enabled {
  background: #D9A441;
}
.cookie-modal .cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle.enabled:after {
  left: 18px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  background: #D9A441;
  color: #234F5E;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 #D9A44114;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #fff;
  color: #D9A441;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-actions button {
  font-size: 15px;
  padding: 8px 18px;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 7vw 18px 7vw;
    max-width: 98vw;
  }
}

/* Scrollbar Styling (Webkit only) */
::-webkit-scrollbar {
  width: 9px;
  background: #D9A44122;
}
::-webkit-scrollbar-thumb {
  background: #D9A441;
  border-radius: 9px;
}
/* Hide scroll on mobile menu overlay when open */
body.overflow-hidden {
  overflow: hidden;
}

/* HIGH-ENERGY & VIBRANT ACCENTS */
.cta-button {
  box-shadow: 0 2px 14px 0 #D9A44122, 0 2px 18px 0 #234F5E11;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}
.cta-button:after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 5px;
  background: #D9A44133;
  border-radius: 9px;
  filter: blur(6px);
  z-index: 0;
  opacity: 0.4;
}

/* Accessibility: Focus Rings */
:focus-visible {
  outline: 2px solid #D9A441;
  outline-offset: 2px;
}

/* MISC */
::-moz-selection { background: #D9A441; color: #234F5E; }
::selection { background: #D9A441; color: #234F5E; }