/* ---- 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 { font-size: 16px; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1EFE9;
  color: #1a1a1a;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 8px 12px; }

/* ----- BRAND VARIABLES (with fallbacks for legacy browsers) ----- */
:root {
  --color-primary: #21436E;
  --color-secondary: #51997B;
  --color-accent: #F1EFE9;
  --color-vivid-1: #2ED6A1; /* Vibrant teal for energetic accent */
  --color-vivid-2: #ED3B3B; /* Vibrant red/coral */
  --color-vivid-3: #FFD600; /* Electric yellow */
  --color-bg-light: #fff;
  --color-bg-dark: #182846;
  --color-text-dark: #1a1a1a;
  --color-text-light: #fff;
  --shadow-primary: 0 4px 24px 0 rgba(33,67,110,0.12), 0 1.5px 4px 0 rgba(81,153,123,0.11);
  --rounded-lg: 18px;
  --rounded-md: 12px;
  --rounded-sm: 7px;
  --transition-main: 0.16s cubic-bezier(.69,-0.41,.55,1.49);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ----- TYPOGRAPHY HIERARCHY ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}
h1 { font-size: 2.8rem; color: var(--color-primary); margin-bottom: 24px; }
h2 { font-size: 2rem; color: var(--color-secondary); margin-bottom: 18px; }
h3 { font-size: 1.25rem; color: var(--color-primary); margin-bottom: 10px; font-weight: 700; }
h4 { font-size: 1.15rem; color: var(--color-secondary); margin-bottom: 8px; }

p, li, dd, td, th {
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}
p:last-child, li:last-child, dd:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--color-primary); }
a { color: var(--color-primary); transition: color 0.15s; }
a:hover, a:focus { color: var(--color-vivid-1); text-decoration: underline; }

/* ----- LAYOUT: CONTAINER & SPACING ----- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-primary);
  transition: box-shadow .2s;
}
section:last-child { margin-bottom: 0; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEX UTILITIES & PATTERNS */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: var(--rounded-md); box-shadow: var(--shadow-primary); transition: box-shadow .17s; }
.card:hover {
  box-shadow: 0 7px 36px 0 rgba(33,67,110,0.19), 0 3px 16px 0 rgba(81,153,123,0.13);
  z-index: 2;
}
.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: #fff; border-radius: var(--rounded-md); box-shadow: var(--shadow-primary); margin-bottom: 20px; border-left: 6px solid var(--color-vivid-1); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ----- BRANDING: LOGO ----- */
header img[alt="CommeraMaz"] {
  max-height: 44px;
  margin-right: 16px;
}

/* ----- HEADER & NAVIGATION ----- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(33,67,110,0.07);
  position: sticky;
  top: 0; z-index: 30;
  margin-bottom: 18px;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-left: 20px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 7px 11px;
  border-radius: var(--rounded-sm);
  transition: background .15s, color .15s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-vivid-3);
  color: var(--color-bg-dark);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--color-secondary) 60%, var(--color-vivid-1) 100%);
  padding: 13px 30px;
  border-radius: 38px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px 0 rgba(33,67,110,0.11);
  border: none;
  cursor: pointer;
  transition: background var(--transition-main), transform .10s;
  margin-left: 24px;
  min-width: 195px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--color-vivid-1) 50%, var(--color-secondary) 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.03);
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: var(--color-vivid-1);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background .16s, color .16s;
  z-index: 49;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 60;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #fff 90%, var(--color-vivid-1) 100%);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  box-shadow: 4px 0 24px 0 rgba(33,67,110, 0.09);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-primary);
  background: var(--color-vivid-1);
  border-radius: 50%;
  width: 48px; height: 48px;
  align-self: flex-end;
  margin: 28px 38px 0 0;
  display: flex;
  align-items: center; justify-content: center;
  transition: background .16s, color .14s;
}
.mobile-menu-close:hover { background: var(--color-vivid-2); color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 56px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-weight: 700;
  padding: 15px 7px;
  color: var(--color-primary);
  border-radius: var(--rounded-md);
  letter-spacing: 0.01em;
  transition: background .15s, color .15s;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vivid-1);
  color: #fff;
}

/* Show/hide navigation for mobile/desktop */
@media (max-width: 1023px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----- HERO SECTION ----- */
main > section:first-of-type {
  background: linear-gradient(98deg, var(--color-accent) 60%, #fff 100%);
  box-shadow: 0 6px 32px 0 rgba(81,153,123, 0.17);
  margin-top: 0;
}
main h1 {
  color: var(--color-primary);
  font-size: 2.8rem;
  line-height: 1.16;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -1.4px;
}
main h2 {
  color: var(--color-vivid-1);
  font-weight: 800;
  font-size: 2rem;
  text-shadow: 0px 2px 0px #fff;
}

/* ----- FEATURES SECTION ----- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-primary);
  flex: 1 1 220px;
  min-width: 225px;
  padding: 26px 19px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: transform 0.12s, box-shadow .19s;
  border-left: 5px solid var(--color-secondary);
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 9px 38px 0 rgba(33,67,110,0.16);
  border-color: var(--color-vivid-3);
}
.feature-grid img { width: 40px; height: 40px; margin-bottom: 5px; }
.feature-grid h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: 0; }

/* ----- CARD COMPONENTS ----- */
.card { background: #fff; border-radius: var(--rounded-md); box-shadow: var(--shadow-primary); padding: 26px 26px; }
.card-content { display: flex; flex-direction: column; justify-content: center; }

/* ----- TESTIMONIALS ----- */
.testimonial-card {
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-primary);
  padding: 28px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 8px solid var(--color-vivid-2);
  max-width: 600px;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  color: var(--color-primary);
  line-height: 1.5;
  font-family: var(--font-display);
  margin-bottom: 7px;
  font-weight: 600;
  quotes: '“' '”' '‘' '’';
}
.testimonial-card blockquote::before {
  content: open-quote;
  color: var(--color-vivid-1);
  font-size: 2.2em;
  vertical-align: baseline;
  margin-right: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 9px;
}

.testimonial-card {
  color: var(--color-text-dark) !important;
  background: #fff !important;
}

/* ----- CASE STUDY / VALUES / SERVICE ITEMS ----- */
.values-grid, .service-detailed-list, .case-study-list, .service-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
}
.values-grid > div,
.case-study-list > div,
.service-detailed-list > div {
  background: #fff;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-primary);
  padding: 21px 19px 20px 19px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-vivid-1);
  transition: box-shadow 0.2s, border-color 0.14s;
}
.values-grid > div:hover,
.case-study-list > div:hover,
.service-detailed-list > div:hover {
  box-shadow: 0 7px 33px 0 rgba(33,67,110,0.15);
  border-color: var(--color-vivid-3);
}
.values-grid img, .service-detailed-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}

.office-highlight, .map-snippet {
  background: #fff;
  border-radius: var(--rounded-sm);
  box-shadow: var(--shadow-primary);
  padding: 16px 14px;
  margin-bottom: 19px;
  border-left: 4px solid var(--color-vivid-1);
}

.office-address {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 17px 18px;
  border-radius: var(--rounded-md);
  box-shadow: var(--shadow-primary);
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 17px;
}
.social-links a img { width: 34px; height: 34px; margin-right: 9px; transition: filter .13s, transform .12s; }
.social-links a:hover img { filter: brightness(1.2) saturate(1.8); transform: scale(1.07) rotate(-5deg); }

/* ----- TABLE STYLING ----- */
table {
  border-radius: var(--rounded-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-primary);
  margin: 18px 0 25px 0;
}
thead { background: var(--color-secondary); color: #fff; }
th { font-weight: 700; font-family: var(--font-display); font-size: 1.08rem; padding: 12px 16px; }
td { background: #fff; border-bottom: 1px solid #e2eaf1; font-size: 1rem; padding: 10px 14px; }
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--color-accent); }

/* ----- FAQ, DL LISTS, UL/OL ----- */
dl { margin-bottom: 24px; }
dt {
  font-size: 1.06rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 10px;
}
dd { margin-bottom: 12px; }
ul, ol { margin-left: 22px; }
ul li, ol li { position: relative; padding-left: 14px; margin-bottom: 7px; }
ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--color-vivid-1);
  border-radius: 50%;
}

/* ----- ADDRESS / CONTACT BLOCKS ----- */
.address { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; font-size: 0.97rem; color: var(--color-secondary); }
.address img { width: 20px; height: 20px; vertical-align: middle; margin-right: 7px; }

/* ----- FOOTER ----- */
footer {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  margin-top: 36px;
  border-radius: var(--rounded-lg) var(--rounded-lg) 0 0;
  box-shadow: 0 -2px 14px 0 rgba(81,153,123,0.10);
  padding: 28px 0;
  font-size: 0.97rem;
}
footer .container {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: var(--color-vivid-3);
  font-family: var(--font-display);
  padding: 7px 9px;
  border-radius: var(--rounded-sm);
  font-size: 1rem;
  font-weight: 600;
  transition: background .13s, color .14s;
}
footer nav a:hover { background: var(--color-vivid-1); color: #fff; }
footer span { margin-top: 18px; display: block; font-size: 0.95em; }

/* ----- BUTTONS ----- */
button, .btn-primary {
  outline: none;
  border: none;
  cursor: pointer;
}

/* ----- MICRO-INTERACTIONS ----- */
.card, .feature-grid > div, .testimonial-card, .values-grid > div, .service-detailed-list > div, .case-study-list > div, .office-highlight, .map-snippet {
  transition: box-shadow .18s, transform .12s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .values-grid > div:hover, .service-detailed-list > div:hover, .case-study-list > div:hover {
  box-shadow: 0 16px 44px 0 rgba(81,153,123,.13), 0 4px 18px 0 rgba(33,67,110,.11);
  transform: translateY(-6px) scale(1.03);
}

/* ----- COOKIE CONSENT BANNER ----- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff 93%, var(--color-secondary) 100%);
  color: var(--color-primary);
  z-index: 80;
  box-shadow: 0 -2px 16px 0 rgba(33,67,110,0.15);
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1.05rem;
  border-top-left-radius: var(--rounded-lg);
  border-top-right-radius: var(--rounded-lg);
  opacity: 1;
  transform: translateY(0px);
  transition: transform .33s, opacity .21s;
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(140px); }

.cookie-banner .cookie-btns {
  display: flex; flex-direction: row; gap: 16px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 11px 22px;
  border: none;
  margin: 0 0 0 0;
  box-shadow: 0 2px 6px 0 rgba(33,67,110,0.10);
  transition: background .16s, color .16s;
}
.cookie-banner .cookie-accept {
  background: linear-gradient(90deg, var(--color-secondary) 65%, var(--color-vivid-1) 100%);
  color: #fff;
}
.cookie-banner .cookie-accept:hover { background: var(--color-vivid-1); color: #fff; }
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--color-vivid-2);
  border: 2px solid var(--color-vivid-2);
}
.cookie-banner .cookie-reject:hover {
  background: var(--color-vivid-2);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ----- COOKIE PREFERENCES MODAL ----- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,67,110,0.54);
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open { display: flex; animation: fadeModalBg .16s linear; }
@keyframes fadeModalBg { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  padding: 34px 36px;
  border-radius: var(--rounded-lg);
  max-width: 440px;
  width: 90vw;
  color: var(--color-primary);
  box-shadow: 0 11px 48px 0 rgba(33,67,110,0.16);
  display: flex; flex-direction: column; gap: 19px;
  animation: modalPop .28s cubic-bezier(.45,.47,.3,1.43);
}
@keyframes modalPop { from { transform: scale(0.92) translateY(18px); opacity:0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.cookie-modal h3 { margin-bottom: 9px; color: var(--color-secondary); font-size: 1.3rem; }
.cookie-modal .cookie-category {
  display: flex; align-items: flex-start; gap: 13px; margin-bottom: 7px;
}
.cookie-modal .cookie-category label {
  font-weight: 600; color: var(--color-primary); font-size: 1.08rem;
}
.cookie-modal .switch {
  display: inline-block;
  width: 48px; height: 26px;
  position: relative;
  margin-right: 7px;
}
.cookie-modal .switch input { display: none; }
.cookie-modal .slider {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #eee;
  border-radius: 30px;
  transition: background .12s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--color-vivid-1);
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(33,67,110,.13);
  transition: transform .17s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-modal .essentials {
  font-size: 0.99rem;
  color: var(--color-vivid-2);
  margin-bottom: 11px;
}
.cookie-modal .modal-actions {
  display: flex; gap: 18px; margin-top: 11px;
}
.cookie-modal button {
  padding: 9px 18px;
  border-radius: 24px;
  font-weight: 600;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0;
  transition: background .16s;
}
.cookie-modal button:hover { background: var(--color-primary); color: #fff; }

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 1280px) {
  .container { max-width: 970px; }
}
@media (max-width: 1023px) {
  .container { max-width: 750px; }
  header .container, footer .container { gap: 14px; }
  .feature-grid, .values-grid, .service-detailed-list, .case-study-list, .service-features-grid { gap: 14px; }
  .feature-grid > div, .values-grid > div, .service-detailed-list > div, .case-study-list > div { min-width: 180px; padding: 14px 8px; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.45rem; }
  .container { max-width: 99vw; padding: 0 8px; }
  section { margin-bottom: 42px; padding: 24px 7px; }
  .content-wrapper { gap: 18px; }
  .feature-grid,
  .values-grid,
  .service-detailed-list,
  .case-study-list,
  .service-features-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid > div,
  .values-grid > div,
  .service-detailed-list > div,
  .case-study-list > div {
    width: 100%; min-width: 0;
    padding: 14px 7px;
    margin-bottom: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
  .office-address, .office-highlight, .map-snippet { padding: 10px 7px; }
  footer .container { flex-direction: column; gap: 16px; }

  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 520px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; padding: 16px 7px 16px 7px; }
  .cookie-banner .cookie-btns { margin-left: 0; gap: 10px; flex-direction: column; align-items: stretch; }
  .cookie-modal { padding: 14px 7px; }
}

/* ----- ANIMATIONS & TRANSITIONS (GENERAL) ----- */
* { box-sizing: border-box; transition: background .11s, color .13s, border-color .14s, box-shadow .16s, transform .16s; }

/* ----- UTILITY CLASSES ----- */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-40 { margin-top: 40px !important; }
.gap-20 { gap: 20px !important; }
.gap-32 { gap: 32px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important;}

/* Accessibility: Hide visually but keep for screen readers */
.visually-hidden { position:absolute; width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ---- END OF CSS ---- */
