/* 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: 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: #fff;
  min-height: 100vh;
  color: #3B423A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: #3B423A;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
a:hover, a:focus {
  color: #84906A;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  color: #3B423A;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }
p, li, blockquote, ul, ol {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #3B423A;
  letter-spacing: 0.01em;
}
strong { font-weight: 600; }

/* Base Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 { font-size: 1.125rem; }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* HEADER & NAV */
header {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid #E6E1D9;
  position: relative;
  z-index: 30;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
  margin-left: 32px;
}
.main-nav a {
  color: #3B423A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.90;
  transition: color 0.2s;
  padding: 6px 8px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #84906A;
  opacity: 1;
}
.cta-button {
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  background: #3B423A;
  border: none;
  border-radius: 24px;
  box-shadow: 0 1px 8px 0 rgba(59,66,58,.10);
  transition: background 0.25s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 32px;
  letter-spacing: 0.02em;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #84906A;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(132,144,106,.13);
}
/* Hide mobile menu toggle by default on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3B423A;
  margin-left: 24px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #84906A;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  header {
    padding: 0 16px;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 32px 0 rgba(59,66,58,.06);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #3B423A;
  font-size: 2rem;
  padding: 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.mobile-menu-close:hover {
  color: #84906A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 0 32px;
  margin-top: 36px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #3B423A;
  font-weight: 500;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid #F6EFE7;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #84906A;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* GENERIC SECTION & SPACING */
.section, .hero-section, .features-section, .about-summary-section, .about-section, .values-section, .services-overview-section, .services-list-section, .process-section, .projects-section, .methods-section, .cta-banner, .testimonials-section, .testimonials-list-section, .review-form-section, .contact-section, .info-section, .map-section, .team-section, .legal-section, .thankyou-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .section, .hero-section, .features-section, .about-summary-section, .about-section, .values-section, .services-overview-section, .services-list-section, .process-section, .projects-section, .methods-section, .cta-banner, .testimonials-section, .testimonials-list-section, .review-form-section, .contact-section, .info-section, .map-section, .team-section, .legal-section, .thankyou-section {
    margin-bottom: 40px;
    padding: 28px 0;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HERO SECTION */
.hero-section {
  background: #F6EFE7;
  border-radius: 16px;
  box-shadow: 0 2px 28px 0 rgba(132,144,106,.06);
}
.hero-section .content-wrapper {
  align-items: flex-start;
}
.hero-section h1 {
  color: #3B423A;
  max-width: 700px;
}
.hero-section p {
  max-width: 500px;
  color: #3B423A;
  font-size: 1.125rem;
  opacity: 0.95;
}
.hero-section .cta-button {
  margin-top: 20px;
}

/* FEATURES SECTION */
.features-section {
  border-bottom: 1px solid #E6E1D9;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3B423A;
  background: #fff;
  padding: 18px 18px 18px 14px;
  border-radius: 12px;
  min-width: 230px;
  box-shadow: 0 2px 14px 0 rgba(59,66,58,.03);
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.feature-list li img {
  width: 28px;
  height: 28px;
  display: block;
  opacity: 0.90;
}
.feature-list li:hover {
  box-shadow: 0 8px 26px 0 rgba(132,144,106,.11);
}

/* ABOUT-SUMMARY, ABOUT & VALUES */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.core-values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.core-values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F6EFE7;
  color: #3B423A;
  border-radius: 10px;
  padding: 14px 24px 14px 12px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.01rem;
  box-shadow: 0 2px 10px 0 rgba(132,144,106,.04);
  transition: box-shadow 0.13s;
}
.core-values-list li img {
  width: 26px;
  height: 26px;
}
.core-values-list li:hover {
  box-shadow: 0 6px 20px 0 rgba(132,144,106,.10);
}

/* SERVICES OVERVIEW */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid #E6E1D9;
  border-radius: 16px;
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  flex: 1 1 260px;
  max-width: 340px;
  box-shadow: 0 1px 12px 0 rgba(59,66,58,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.service-card h3 {
  font-size: 1.25rem;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(132,144,106,.11);
}

/* SERVICES LIST (services.html) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.service-list li {
  background: #fff;
  border: 1px solid #E6E1D9;
  border-radius: 16px;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(132,144,106,.04);
  transition: box-shadow 0.14s;
}
.service-list li:hover {
  box-shadow: 0 10px 38px 0 rgba(59,66,58,.08);
}
.service-price {
  color: #84906A;
  background: #F6EFE7;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 500;
  margin-top: 10px;
  align-self: flex-start;
}

/* STEPS / PROCESS SECTION */
.step-by-step ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-by-step li {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.32;
  background: #F6EFE7;
  padding: 16px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.step-by-step li img {
  width: 26px;
  height: 26px;
}

/* PROJECTS SECTION (realizzazioni) */
.project-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.project-summary {
  background: #fff;
  border: 1px solid #E6E1D9;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 1px 12px 0 rgba(59,66,58,.04);
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
.project-summary h3 {
  margin-bottom: 6px;
}
.material-descriptions ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CARDS LAYOUT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #E6E1D9;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(59,66,58,.04);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}

/* GRID FLEX LAYOUTS */
.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) {
  .service-cards, .feature-list, .core-values-list, .project-summaries, .content-grid, .card-container, .service-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* TESTIMONIALS */
.testimonials-section, .testimonials-list-section {
  background: #fff;
}
.testimonials-section h2, .testimonials-list-section h2 {
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: #F6EFE7;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(132,144,106,.06);
  border: 1px solid #E6E1D9;
  transition: box-shadow 0.15s;
  min-width: 220px;
  max-width: 650px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(132,144,106,.12);
}
.testimonial-card p {
  color: #3B423A;
  font-size: 1.15rem;
  opacity: 0.99;
}
.testimonial-footer, .client-name {
  color: #3B423A;
  opacity: 0.82;
  font-size: 0.98rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.star-rating img {
  height: 20px;
  width: 20px;
  display: block;
}

/* REVIEW FORM */
.review-form-section p {
  max-width: 600px;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #E6E1D9;
  padding: 40px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  color: #3B423A;
}
.footer-logo {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #84906A;
  font-size: 0.99rem;
  transition: color 0.18s;
  padding: 4px 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #3B423A;
}
.footer-info {
  text-align: center;
  font-size: 0.98rem;
  color: #3B423A;
  opacity: 0.78;
}
footer p a { color: #84906A; text-decoration: underline; }
footer p a:hover { color: #3B423A; }

/* CTA BANNER */
.cta-banner {
  background: #3B423A;
  border-radius: 16px;
  box-shadow: 0 1px 14px 0 rgba(59,66,58,.10);
  color: #fff;
  margin-bottom: 64px;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta-banner p {
  color: #fff;
  max-width: 440px;
}
.cta-banner .cta-button {
  background: #F6EFE7;
  color: #3B423A;
  margin: 0;
  font-weight: 700;
}
.cta-banner .cta-button:hover, .cta-banner .cta-button:focus {
  background: #84906A;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(246,239,231,.12);
}

/* LEGAL SECTIONS */
.legal-section h1, .legal-section h2, .legal-section h3 {
  margin-top: 18px;
}
.legal-section ul {
  margin: 18px 0 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: disc inside;
}
.legal-section p, .legal-section a {
  max-width: 730px;
  display: block;
}

/* THANK YOU PAGE */
.thankyou-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.thankyou-section h1 {
  margin-bottom: 20px;
}

/* MODALS & ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* ========================
      COOKIE CONSENT BANNER
========================= */
.cookie-consent-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 98vw;
  max-width: 570px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 32px 0 rgba(59,66,58,0.10);
  padding: 26px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1111;
  gap: 18px;
  animation: fadeInUp .6s cubic-bezier(.4,0,.2,1);
}
.cookie-consent-banner p {
  color: #3B423A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  text-align: center;
  opacity: 0.92;
  line-height: 1.48;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 28px;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  margin: 0 3px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.17s;
  outline: none;
  box-shadow: 0 1px 9px 0 rgba(246,239,231,.11);
}
.cookie-btn-accept {
  background: #84906A;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #3B423A;
}
.cookie-btn-reject {
  background: #E6E1D9;
  color: #3B423A;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #3B423A;
  color: #fff;
}
.cookie-btn-settings {
  background: #fff;
  border: 1px solid #84906A;
  color: #84906A;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #84906A;
  color: #fff;
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(59,66,58, 0.22);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInDown .33s cubic-bezier(.4,0,.2,1);
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 290px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 2px 34px 0 rgba(59,66,58,0.18);
  padding: 36px 32px 26px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp .4s cubic-bezier(.4,0,.2,1);
}
.cookie-modal h2 {
  font-size: 1.18rem;
  text-align: left;
  color: #3B423A;
  margin-bottom: 4px;
}
.cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.cookie-category label {
  font-size: 1rem;
  color: #3B423A;
}
.cookie-toggle {
  width: 44px;
  height: 26px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E6E1D9;
  transition: background .2s;
  border-radius: 26px;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #84906A;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
  border-radius: 50%;
  box-shadow: 0 1px 8px 0 rgba(59,66,58,.06);
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  font-size: 0.98rem;
  padding: 8px 20px;
  min-width: 104px;
}
.cookie-modal .cookie-btn-accept {
  background: #84906A;
  color: #fff;
}
.cookie-modal .cookie-btn-reject {
  background: #E6E1D9;
  color: #3B423A;
}
@media (max-width: 520px) {
  .cookie-consent-banner {
    max-width: 96vw;
    padding: 16px 12px 8px 12px;
  }
  .cookie-modal {
    padding: 20px 8px 12px 8px;
  }
}

/* ========================
      RESPONSIVE ADAPTIVE
========================= */
@media (max-width: 1080px) {
  .container {
    max-width: 95vw;
  }
  header {
    height: 64px;
  }
}
@media (max-width: 860px) {
  .service-card, .project-summary, .core-values-list li, .feature-list li {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .footer-info {
    font-size: 0.93rem;
  }
  footer {
    padding: 26px 0 14px 0;
  }
  .cta-banner {
    border-radius: 10px;
  }
}

/* ========================
     ACCESSIBILITY HELPERS
========================= */
:focus {
  outline: 2px solid #84906A;
  outline-offset: 2px;
}

/* Hide visually, keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ======================
     DISABLED STATES
======================= */
button[disabled],
.cta-button[disabled],
.cookie-btn[disabled] {
  opacity: 0.52;
  pointer-events: none;
  cursor: not-allowed;
}

/* ========================
      MISCELLANEOUS
========================= */
blockquote {
  border-left: 3px solid #84906A;
  margin-left: 0;
  margin-right: 0;
  padding-left: 18px;
  color: #3B423A;
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 14px;
}
blockquote span {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  color: #84906A;
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid #E6E1D9;
  margin: 24px 0;
}

/* ========================
      FLEX SECTION UTILS
========================= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

/* ========================
     CONTACT DETAILS
========================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #3B423A;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* ========================
      TIMELINE/ROLES
========================= */
.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 12px;
}
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

/* Hide desktop main-nav on mobile and vice versa */
@media (max-width: 992px) {
  .main-nav { display: none; }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
