/* --- 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  color: #273746;
  background: #F7F9F9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}
a {
  color: #273746;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #7D6608;
}
ul, ol {
  padding-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* -- BASE LAYOUT -- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(39,55,70,0.06);
  transition: box-shadow .2s,transform .2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(39,55,70,0.10);
  transform: translateY(-2px) scale(1.01);
}
.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-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(39,55,70,0.07);
  padding: 24px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .22s,transform .2s;
}
.feature:hover {
  box-shadow: 0 6px 26px 0 rgba(39,55,70,0.11);
  transform: translateY(-2px) scale(.99);
}

/* --- HEADER / MAIN-NAV --- */
header {
  background: #F7F9F9;
  box-shadow: 0 2px 8px 0 rgba(39,55,70,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 20px 14px 20px;
  position: relative;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  color: #273746;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .20s, color .20s;
  display: flex;
  align-items: center;
}
.main-nav > a.primary-cta {
  margin-left: auto;
  background: #273746;
  color: #fff;
  border-radius: 32px;
  font-weight: 700;
  padding: 10px 26px;
  letter-spacing: 0.01em;
  font-size: 18px;
  box-shadow: 0 2px 9px 0 rgba(39,55,70,0.07);
  transition: background .22s, color .18s, transform .22s;
}
.main-nav > a.primary-cta:hover,
.main-nav > a.primary-cta:focus {
  background: #7D6608;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.main-nav > a:hover:not(.primary-cta) {
  background: #ECECEC;
  color: #7D6608;
}
.main-nav > a img {
  height: 36px;
  width: auto;
  margin-right: 5px;
}

/* -- HERO SECTION -- */
.hero {
  min-height: 380px;
  background: #fff;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 4px 32px 0 rgba(39,55,70,0.07);
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  color: #273746;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  color: #273746;
  line-height: 1.5;
  margin-bottom: 18px;
}
.hero .primary-cta {
  margin-top: 8px;
}

/* -- CTAs and BUTTONS -- */
.primary-cta,
.button {
  display: inline-block;
  background: #273746;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 32px;
  font-size: 1.12rem;
  padding: 13px 34px;
  margin-top: 12px;
  transition: background .22s, box-shadow .18s, color .18s, transform .18s;
  box-shadow: 0 2px 9px 0 rgba(39,55,70,0.07);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.primary-cta:hover,
.primary-cta:focus,
.button:hover,
.button:focus {
  background: #7D6608;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 18px 0 rgba(39,55,70,0.12);
}
.button-secondary {
  background: transparent;
  color: #273746;
  border: 2px solid #273746;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 32px;
  font-size: 1.10rem;
  padding: 11px 26px;
  margin-top: 10px;
  transition: background .18s, border .18s, color .18s, transform .18s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #ECECEC;
  border-color: #7D6608;
  color: #7D6608;
  transform: translateY(-1px) scale(1.02);
}


/* -- GENERAL TYPOGRAPHY -- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.10rem;
  font-weight: 700;
  color: #273746;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #273746;
  margin-bottom: 12px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: #273746;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #273746;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: #273746;
  line-height: 1.7;
}
strong {
  color: #273746;
  font-weight: bold;
}
blockquote {
  padding: 18px 26px;
  color: #273746;
  background: #FAF7E9;
  border-left: 6px solid #7D6608;
  border-radius: 7px;
  font-style: italic;
  margin: 18px 0;
}

/* --- LISTS --- */
ul, ol {
  color: #273746;
  margin-bottom: 16px;
  line-height: 1.6;
}
ul li, ol li {
  padding-left: 6px;
  margin-top: 6px;
  margin-bottom: 6px;
}


/* --- FOOTER --- */
footer {
  background: #EEF1F1;
  padding-top: 30px;
  padding-bottom: 25px;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -3px 20px 0 rgba(39,55,70,0.04);
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  color: #273746;
  opacity: 0.81;
  padding: 4px 10px;
  border-radius: 5px;
  transition: background .18s, color .18s;
}
.footer-nav a:hover {
  background: #DDE3E6;
  color: #7D6608;
}
.brand-statement {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 12px;
}
.brand-statement img {
  height: 40px;
  width: auto;
}
.brand-statement span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  color: #273746;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 0.97rem;
  color: #273746;
  margin-bottom: 12px;
}
.footer-contact a {
  color: #273746;
  opacity: 0.95;
  margin: 0 1px;
  transition: color .18s;
}
.footer-contact a:hover {
  color: #7D6608;
}
.footer-contact img {
  height: 15px;
  width: auto;
  vertical-align: middle;
  margin: 0 3px 0 6px;
}
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.social-icons img {
  height: 23px;
  filter: grayscale(28%) brightness(0.92);
  transition: filter .21s, transform .16s;
  opacity: 0.88;
}
.social-icons img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
}
.copyright {
  text-align: center;
  font-size: 0.98rem;
  color: #485366;
  opacity: 0.70;
  margin-top: 10px;
}

/* --- TESTIMONIAL CARD / SLIDER --- */
.testimonial-slider, .project-highlights {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 20px 23px;
  background: #FAF7E9;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(125,102,8,0.08);
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 320px;
  color: #273746;
  margin-bottom: 20px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  transition: box-shadow .19s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(39,55,70,0.13);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card p {
  color: #273746;
  font-size: 1.07rem;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #7D6608;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.star-rating {
  color: #FFD600;
  font-size: 1.13em;
  letter-spacing: 2px;
  margin-top: -12px;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 16px 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(39,55,70,0.05);
  padding: 16px 18px;
  transition: box-shadow .17s, transform .15s;
}
.faq-item:hover {
  box-shadow: 0 5px 15px 0 rgba(125,102,8,0.08);
  transform: translateY(-2px) scale(1.01);
}

/* --- CONTACT INFO --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-info img {
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
}

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

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(39,55,70,0.17);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
  animation: slideUpCookie 0.55s cubic-bezier(.41,.06,.57,.88);
}
@keyframes slideUpCookie {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #273746;
  margin-bottom: 4px;
}
.cookie-banner-text {
  color: #273746;
  font-size: 0.99rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn,
.cookie-reject-btn,
.cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 9px 22px;
  border-radius: 24px;
  margin-top: 0;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background .21s, color .19s, box-shadow .14s;
}
.cookie-btn {
  background: #273746;
  color: #fff;
}
.cookie-reject-btn {
  background: #fff;
  color: #273746;
  border: 2px solid #7D6608;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #7D6608;
  color: #fff;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #FAF7E9;
  color: #7D6608;
}
.cookie-settings-btn {
  background: #ECECEC;
  color: #273746;
  border: 2px solid #ECECEC;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #7D6608;
  color: #fff;
  border: 2px solid #7D6608;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  background: rgba(39,55,70,.85);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal 0.4s cubic-bezier(.41,.06,.57,.88);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  padding: 26px 28px;
  max-width: 420px;
  width: 95%;
  box-shadow: 0 10px 40px 0 rgba(39,55,70,0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: scaleInCookieModal 0.35s cubic-bezier(.51,.25,.35,1.23);
}
@keyframes scaleInCookieModal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #273746;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #FAF7E9;
  margin-bottom: 10px;
  padding: 10px 15px 10px 14px;
  font-size: 1rem;
  color: #273746;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-category label {
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 10px;
  color: #273746;
}
.cookie-modal-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #ECECEC;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .20s;
  cursor: pointer;
}
.cookie-modal-toggle:checked {
  background: #7D6608;
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .23s;
  box-shadow: 0 1px 3px 0 rgba(39,55,70,0.07);
}
.cookie-modal-toggle:checked:before {
  left: 19px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
}
.cookie-modal-close {
  /* absolute close btn can be positioned top-right */
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #273746;
  position: absolute;
  top: 16px;
  right: 15px;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 999px;
  transition: background .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EEE;
  color: #7D6608;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #273746;
  border-radius: 8px;
  font-size: 2.25rem;
  font-weight: 700;
  padding: 5px 18px 5px 15px;
  margin: 0 12px 0 0;
  box-shadow: 0 2px 8px rgba(39,55,70,0.08);
  border: 1.5px solid #ECECEC;
  transition: background .16s, color .17s;
  z-index: 200;
  position: absolute;
  right: 16px;
  top: 14px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ECECEC;
  color: #7D6608;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,55,70,0.95);
  z-index: 1001;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(0.5, 0.2, 0.2, 1);
  box-shadow: -20px 0 30px 0 rgba(39,55,70,0.16);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: none;
  margin: 20px 30px 0 0;
  border-radius: 7px;
  transition: background .13s, color .13s;
  padding: 2px 17px 2px 7px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ECECEC;
  color: #7D6608;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 64px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
  width: 70vw;
  border-radius: 9px;
  transition: background .19s, color .16s;
  margin-bottom: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7D6608;
  color: #fff;
}
@media (max-width: 1120px) {
  .main-nav {
    max-width: 100vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
  }
  .feature-grid {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
  .main-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    padding: 16px 4vw 8px 5vw;
  }
  .main-nav > a {
    font-size: 15.2px;
    padding: 7px 8px;
  }
  .main-nav > a.primary-cta {
    padding: 9px 17px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .hero h1 {
    font-size: 1.48rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .footer-contact, .brand-statement {
    flex-direction: column;
    gap: 4px;
    font-size: 1rem;
    align-items: center;
  }
  .brand-statement img {
    height: 32px;
  }
  footer {
    border-radius: 21px 21px 0 0;
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .social-icons img {
    height: 20px;
  }
  .hero {
    min-height: 220px;
    border-radius: 0 0 28px 28px;
  }
  .testimonial-slider,.project-highlights {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
  }
  .feature-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    padding: 18px 12px 16px 13px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 37px;
    padding: 25px 4vw;
  }
}

@media (max-width: 590px) {
  .container {
    padding: 0 2vw;
  }
  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }
  .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .testimonial-card,.feature,.faq-item {
    padding-left: 9px;
    padding-right: 9px;
  }
}

/* --- VISUAL HIERARCHY / SCANDINAVIAN CLEAN --- */
/* Visual separation, functional beauty and soft shadows */
.section, .card, .feature, .faq-item, .testimonial-card {
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(39,55,70,0.05);
}
.section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature {
  background: #fff;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 12px 0 rgba(39,55,70,0.06);
}

/* --- INPUTS / FORMS --- */
input,textarea,select {
  font: inherit;
  background: #F7F9F9;
  border-radius: 8px;
  border: 1.5px solid #ECECEC;
  padding: 11px 17px;
  color: #273746;
  font-size: 1.08rem;
  box-shadow: 0 2px 6px rgba(39,55,70,0.06);
  margin-bottom: 14px;
  transition: border .17s, box-shadow .16s;
}
input:focus,textarea:focus,select:focus {
  border: 1.7px solid #7D6608;
  outline: none;
  background: #fff;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #273746;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; background: #F7F9F9; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #DEE1E3; border-radius: 10px; }

/* --- VISUAL MICRO-INTERACTIONS --- */
.button, .primary-cta, .footer-nav a, .main-nav > a, .feature, .card, .faq-item, .testimonial-card, .social-icons img, .cookie-btn, .cookie-reject-btn, .cookie-settings-btn {
  transition: background .22s, color .18s, box-shadow .22s, transform .16s;
}

/* --- FOCUS VISIBLE FOR ACCESSIBILITY --- */
:focus-visible {
  outline: 2.5px solid #7D6608 !important;
  outline-offset: 2px;
}

/* --- UTILITY CLASSES --- */
.align-center {
  align-items: center;
  justify-content: center;
}
.align-start {
  align-items: flex-start;
  justify-content: flex-start;
}
.align-end {
  align-items: flex-end;
  justify-content: flex-end;
}
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* --- Z-INDEX / OVERLAP LAYERS --- */
header { z-index: 50; }
footer { z-index: 1; }
.mobile-menu { z-index: 1001; }
.cookie-banner, .cookie-modal-overlay { z-index: 10010; }

/* --- CUSTOM FONT-FACES LOAD SUGGESTION (outside CSS) --- */
/* Make sure Montserrat and Roboto are loaded via <link> in the HTML */
