/* Zenith Genussmomente 'playful_dynamic' CSS – Only Flexbox, Mobile First, Animations, Bright Aesthetic */

/* -----------------------
   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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  background: #F5F3EC;
  min-height: 100%;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223244;
  background: #F5F3EC;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  overscroll-behavior: contain;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: #B99853;
  transition: color 0.2s cubic-bezier(.77,.01,.59,.99);
  font-weight: 600;
}
a:hover, a:focus {
  color: #FF7F50;
}
button, .button-primary, .button-secondary {
  font-family: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}
::-webkit-input-placeholder { color: #a9a9a9; }
::-moz-placeholder { color: #a9a9a9; }
:-ms-input-placeholder { color: #a9a9a9; }
::placeholder { color: #a9a9a9; }

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #223244;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-top: 18px;
}
h3 {
  font-size: 1.1rem;
}
h4 {
  font-size: 1rem;
}
@media (min-width: 700px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.3rem; }
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FF7F50;
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.13rem;
}
strong {
  font-weight: 700;
}

/* ----------------------
      GENERAL LAYOUT
------------------------*/
.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Spacing and Alignment */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(34,50,68,0.11);
  padding: 28px 22px;
  transition: box-shadow 0.3s, transform 0.17s cubic-bezier(.49,.49,.48,1.52);
}
.card:hover {
  box-shadow: 0 12px 38px 0 rgba(34,50,68,0.18);
  transform: translateY(-6px) scale(1.03) rotate(-0.8deg);
}
.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: 16px;
  box-shadow: 0 2px 12px 0 rgba(60, 84, 110, 0.09);
  margin-bottom: 20px;
  border: 2.5px solid #FF7F50;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid,
  .features-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/*---------------------
    BRAND COLORS
---------------------*/
:root {
  --primary: #223244;
  --secondary: #B99853;
  --accent: #F5F3EC;
  --brand-orange: #FF7F50;
  --brand-lime: #C8EB4D;
  --brand-teal: #40D9C2;
  --brand-blue: #3D9DF6;
  --brand-pink: #FA49B6;
  --brand-yellow: #FFD85A;
}

.background-primary { background: var(--primary); color: #fff; }
.background-accent { background: var(--accent); }

/*--------------------
    HEADER & NAV
---------------------*/
header {
  background: #F5F3EC;
  width: 100%;
  box-shadow: 0 2px 14px 0 rgba(34,50,68,0.08);
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  padding: 18px 0 18px 0;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  max-width: 100%;
}
.main-nav > a img {
  width: 145px;
  height: auto;
  margin-right: 16px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  color: #223244;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s cubic-bezier(.53,1.48,.32,1.29);
  padding: 5px 6px;
  border-radius: 5.5px;
}
.main-nav li a:hover,
.main-nav li a:focus {
  color: #FF7F50;
  background: #FFF1DF;
}
.button-primary {
  background: linear-gradient(95deg, #FFD85A 0%, #FF7F50 100%);
  color: #223244;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 12px 32px;
  font-size: 1.09rem;
  box-shadow: 0 6px 20px 0 rgba(255,127,80,0.17);
  transition: background 0.13s, color 0.13s, box-shadow 0.17s, transform 0.13s;
  margin-left: 18px;
  border: 3px solid transparent;
  outline: none;
  cursor: pointer;
}
.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(95deg, #FFD85A 0%, #FA49B6 100%);
  color: #223244;
  transform: translateY(-2px) scale(1.032);
  box-shadow: 0 12px 24px 0 rgba(250,73,182,0.17),0 2px 4px #FFD85A;
  border: 3px solid #B99853;
}
.button-secondary {
  background: linear-gradient(95deg, #C8EB4D 0%, #3D9DF6 100%);
  color: #223244;
  border-radius: 28px;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(64, 217, 194, 0.15);
  transition: all 0.14s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: linear-gradient(95deg, #FA49B6 0%, #FFD85A 100%);
  color: #223244;
  transform: scale(1.03);
}

/* ----------------------------
    MOBILE NAVIGATION STYLES
---------------------------- */
.mobile-menu-toggle {
  background: #FF7F50;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 202;
  box-shadow: 0 6px 16px 0 rgba(255,127,80,0.13);
  transition: background 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #FA49B6;
}

@media (min-width: 1050px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1049px) {
  .main-nav ul,
  .main-nav .button-primary {
    display: none;
  }
  .main-nav {
    gap: 0;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF1DF;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.72,-0.03,.34,1.13);
  display: flex;
  flex-direction: column;
  min-width: 70vw;
  padding: 0;
  box-shadow: 2px 0 28px 0 rgba(34,50,68,0.14);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #223244;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 203;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FF7F50;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  gap: 16px;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: #223244;
  background: #FFD85A;
  padding: 13px 26px;
  margin-right: 0;
  border-radius: 30px;
  margin-bottom: 4px;
  box-shadow: 0 2px 6px rgba(220, 120, 56, 0.09);
  font-weight: 700;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FA49B6;
  color: #fff;
}

/* Overlay effect when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Hide mobile menu by default above tablet */
@media (min-width: 1050px) {
  .mobile-menu { display: none !important; }
}

/*------------------------
   HERO / SECTION STYLES
--------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  transition: background 0.5s;
  background: linear-gradient(92deg, #FFD85A 5%, #F5F3EC 60%);
  border-radius: 18px;
}
.section:last-child,
section:last-child {
  margin-bottom: 0;
}
.hero,
section:first-child {
  background: linear-gradient(95deg, #FFD85A 55%, #FF7F50 100%);
  color: #223244;
  min-height: 235px;
  display: flex;
  align-items: center;
  border-radius: 18px 18px 30px 30px;
  box-shadow: 0 8px 32px 0 rgba(255,216,90,0.09);
}

/* Playful fun colored "highlights" under h1/h2 */
h1::after,
h2::after {
  content: '';
  display: block;
  margin: 14px 0 0 0;
  height: 6px;
  width: 62px;
  border-radius: 6px;
  background: linear-gradient(95deg, #FA49B6 20%, #FFD85A 51%, #40D9C2 100%);
  opacity: 0.36;
}

/* Text Section (About, Lists) */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.text-section ul li {
  font-size: 1.01rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
  color: #3D9DF6;
  font-weight: 600;
  line-height: 1.65;
}
.text-section ul li:before {
  content: '🍽️';
  position: absolute;
  left: 0;
  top: 1px;
}
.section ul li {
  font-size: 1rem;
  position: relative;
  margin-bottom: 10px;
  color: #223244;
  font-weight: 500;
  line-height: 1.65;
  padding-left: 0;
}

@media (max-width: 800px) {
  .container {
    padding: 0 6px;
  }
  section,
  .section {
    padding: 32px 6px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.18rem; }
}

/*----------------------
       FEATURES GRID
------------------------*/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
  width: 100%;
}
.features-grid > div {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 18px 0 rgba(34,50,68,0.10);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  min-height: 160px;
  flex: 1 1 240px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.22s;
}
.features-grid > div span[role=img] {
  font-size: 2.0rem;
  margin-bottom: 11px;
  margin-right: 5px;
  text-shadow: 1px 2px 0 #FFD85A, 1px 1px #FA49B6;
  filter: drop-shadow(0 6px 19px #FFD85A33);
}
.features-grid > div:hover {
  transform: scale(1.045) rotate(-1.3deg);
  box-shadow: 0 9px 32px 0 #FA49B644;
  z-index: 2;
}
.features-grid h3 {
  color: #FF7F50;
  letter-spacing: 0.7px;
  font-size: 1.18rem;
  margin-bottom: 8px;
  padding-left: 0;
}
.features-grid p {
  font-size: 1rem;
  color: #223244;
}

@media (max-width: 820px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
    padding: 22px 11px;
  }
}

/*---------------------
  TESTIMONIAL CARDS
----------------------*/
.testimonial-card {
  background: #fff;
  border-left: 8px solid #FFD85A;
  box-shadow: 0 2px 18px 0 rgba(34,50,68,0.10);
  color: #223244;
  max-width: 720px;
  margin-top: 18px;
  margin-bottom: 20px;
  border-radius: 21px;
  padding: 36px 28px 26px 24px;
  position: relative;
  font-size: 1.12rem;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
  z-index: 2;
  transition: box-shadow 0.19s, border-left 0.31s;
}
.testimonial-card:hover {
  box-shadow: 0 11px 32px 0 rgba(250,73,182,0.14);
  border-left: 8px solid #FA49B6;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.15rem;
  color: #223244;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card blockquote footer {
  font-size: 1rem;
  font-weight: 700;
  color: #FF7F50;
  margin-top: 13px;
  margin-left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.93;
}
@media (max-width: 900px) {
  .testimonial-card {
    padding: 20px 13px 18px 9px;
    flex-direction: column;
    font-size: 1rem;
  }
}

/*------------------
     CTA SECTIONS
--------------------*/
section .button-primary {
  margin-top: 16px;
  margin-left: 0;
}

/*-----------------------
     FOOTER STYLES
-------------------------*/
footer {
  background: #223244;
  color: #fff;
  margin-top: 30px;
  padding: 0 0 12px 0;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 28px 12px 0 12px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 1rem;
}
.footer-menu a {
  color: #FFD85A;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 5px;
  transition: background 0.1s;
  font-weight: 600;
  padding: 2px 6px;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: #B99853;
  color: #fff;
}
.footer-contact {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.87;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.footer-contact a {
  color: #FFF1DF;
  border-bottom: 1.8px dotted #FFD85A;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-contact a:hover {
  color: #FA49B6;
}
.footer-copy {
  font-size: 0.95rem;
  color: #FFD85A;
  opacity: 0.91;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .footer-wrapper {
    gap: 9px;
    padding: 22px 3px 0 3px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 3px;
  }
}

/*------------------
      ANIMATIONS
--------------------*/
.button-primary, .button-secondary, .features-grid > div, .card, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.21s, background 0.19s, color 0.17s;
}
.features-grid > div, .card, .testimonial-card {
  will-change: transform, box-shadow;
}

.button-primary:active, .button-secondary:active {
  transform: scale(0.97);
}
section, .card, .features-grid > div, .testimonial-card, .footer-wrapper {
  animation: fadein 0.73s cubic-bezier(.54,.09,.66,1.16);
}
@keyframes fadein {
  0% { opacity: 0; transform: translateY(24px) scale(0.97); }
  100% { opacity: 1; transform: none; }
}

/* Micro-interaction bounce on emoji */
.features-grid > div:hover span[role=img] {
  animation: bounceIcon 0.65s cubic-bezier(.52,1.93,.64,1.01);
}
@keyframes bounceIcon {
  0%   { transform: scale(1) translateY(0); }
  36%  { transform: scale(1.24) translateY(-12px); }
  56%  { transform: scale(0.95) translateY(4px); }
  100% { transform: scale(1) translateY(0); }
}

/*------------------------------
     COOKIE CONSENT BANNER
-------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #223244;
  width: 100vw;
  box-shadow: 0 -4px 24px rgba(34,50,68,.14);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  animation: banner-in 0.72s cubic-bezier(.56,0,0,1) 0s 1;
}
@keyframes banner-in {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner p {
  font-size: 1.05rem;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  border: none;
  outline: none;
  padding: 11px 22px;
  font-size: 1rem;
  border-radius: 27px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.16s, color 0.12s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: linear-gradient(91deg,#FFD85A 60%, #40D9C2 100%);
  color: #223244;
  box-shadow: 0 1px 6px #FFD85A35;
}
.cookie-banner .accept:hover {
  background: linear-gradient(95deg,#3D9DF6 0%, #FFD85A 80%);
  color: #fff;
}
.cookie-banner .reject {
  background: #FFD4DD;
  color: #FA49B6;
  box-shadow: 0 1px 6px #FA49B633;
}
.cookie-banner .reject:hover {
  background: #FA49B6;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff3c2;
  color: #3D9DF6;
  border: 2px solid #FFD85A;
}
.cookie-banner .settings:hover {
  background: #FFD85A;
  color: #223244;
}

@media (max-width: 500px) {
  .cookie-banner {
    padding: 20px 3.5vw;
    font-size: 1rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,50,68,0.22);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.48s cubic-bezier(.27,1.23,.77,.86);
}
@keyframes modal-fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 23px;
  width: 97vw;
  max-width: 410px;
  box-shadow: 0 12px 52px #22324423;
  padding: 36px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  color: #223244;
}
.cookie-modal-content h3 {
  color: #FA49B6;
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
}
.cookie-categories {
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FA49B6;
  width: 20px; height: 20px;
}
.cookie-category label {
  font-size: 1rem;
  color: #223244;
}
.cookie-category .essential {
  color: #FFD85A;
  margin-left: 2px;
  font-weight: 700;
}
.cookie-modal-actions {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-content .close-modal {
  background: none;
  color: #B99853;
  font-size: 1.29rem;
  border: none;
  position: absolute;
  top: 16px; right: 22px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-content .close-modal:hover {
  color: #FF7F50;
}

/*----------------------
      CARD & LISTS
------------------------*/
.card-list,
.section ul {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section ul li {
  font-size: 1rem;
  color: #223244;
}

/*------------------------
   THANK YOU & MESSAGES
-------------------------*/
.thankyou-message {
  background: linear-gradient(90deg,#FFD85A 50%, #40D9C2 100%);
  padding: 42px 24px;
  color: #223244;
  border-radius: 22px;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 30px;
}

/*-------------------
        FORMS
---------------------*/
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 1.9px solid #FFD85A;
  padding: 13px 15px;
  margin-bottom: 12px;
  width: 100%;
  background: #fff;
  outline: none;
  transition: border 0.15s, box-shadow 0.19s;
  box-shadow: 0 1px 4px #FFD85A23;
}
input:focus,
textarea:focus,
select:focus {
  border: 2.5px solid #FA49B6;
}

label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223244;
  font-weight: 600;
  margin-bottom: 2px;
}

@media (max-width: 600px) {
  h1 { font-size: 1.25rem; }
  .button-primary,
  .button-secondary {
    font-size: 1rem;
    padding: 9px 24px;
  }
  section {
    padding: 19px 2px;
  }
}

/*-------------------------
      UTILITIES
---------------------------*/
.text-center {
  text-align: center !important;
}
.hide {
  display: none !important;
}
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* Playful slanted cards on hover */
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(255,216,90,0.11),0 4px 18px 0 #FA49B644;
  transform: rotate(-1deg) scale(1.025);
}

/*-------------------
       All done!
--------------------*/
