/* =============================================================
   CSS RESET & NORMALIZE (Modern)
   ============================================================= */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #191E25;
  color: #F5F7FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
address {
  font-style: normal;
  color: #ACB0B6;
  margin-top: 6px;
}

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

/* =============================================================
   BRAND VARIABLES & PALETTE (Industrial Modern)
============================================================= */
:root {
  --primary: #1A2639;
  --secondary: #63ADC7;
  --accent: #F5F7FA;
  --dark: #141922;
  --metal: #8E97A6;
  --border: #242D3B;
  --surface: #232937;
  --shadow: 0 2px 16px 0 rgba(30,35,45,0.18);
  --radius: 14px;
  --focus: #63ADC7;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

/* =============================================================
   LAYOUT CONTAINERS & UTILITY
============================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.header-flex, .footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-flex {
  gap: 40px;
  padding: 30px 0 10px 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
/* MANDATORY LAYOUT FLEX */
.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; }
/* Custom grids for specific sections */
.feature-grid, .service-cards, .experience-cards, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div, .service-cards > div, .experience-cards > div, .testimonial-card, .testimonial-list > .testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 30px 24px;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.12s, box-shadow 0.13s;
}
.feature-grid > div:hover, .service-cards > div:hover, .experience-cards > div:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 10px 28px 0 rgba(40,43,56,0.28);
  border-color: var(--secondary);
}

/* =============================================================
   TYPOGRAPHY
============================================================= */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--accent);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--secondary);
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--accent);
}
h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--metal);
}
p, li, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent);
}
strong {
  font-weight: 700;
  color: var(--secondary);
}
.hero p {
  font-size: 1.18rem;
  margin-top: 18px;
  color: #E6ECF3;
}
.price {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--secondary);
  margin-top: 2px;
}
.text-section ul,
.faq-list,
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.text-section p {
  max-width: 700px;
  color: var(--accent);
}
.text-section address {
  color: #ACB0B6;
  font-size: 1rem;
  margin-top: 6px;
}

/* =============================================================
   BRAND & HEADER
============================================================= */
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background: var(--dark);
  z-index: 20;
  box-shadow: 0 2px 16px 0 rgba(20,27,37,0.13);
  border-bottom: 1px solid var(--border);
}
.logo-link img {
  display: block;
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  transition: color 0.14s, border-bottom 0.19s;
  position: relative;
  padding: 7px 0;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 0.78em 2.2em;
  border-radius: 40px;
  box-shadow: 0 2px 15px 0 rgba(35,37,42,0.14);
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.19s, color 0.14s, border-color 0.18s, transform 0.10s;
  margin-left: 18px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  margin-left: 0;
  margin-top: 12px;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.025);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  border: none;
  margin-left: 14px;
  z-index: 51;
  position: relative;
  cursor: pointer;
  padding: 8px 10px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,25,32, 0.96);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 48px;
  padding-left: 0;
  padding-right: 0;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.6,.37,.32,1.08);
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  box-shadow: -2px 0 24px 0 rgba(22,27,37, 0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 52;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 22px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #1A2639;
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 38px 32px 24px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.26rem;
  color: var(--accent);
  font-weight: 600;
  padding: 13px 0 9px 0;
  border-bottom: 1px solid #232937;
  transition: color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
}

/* Show mobile menu controls on narrow screen */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Hide mobile menu at desktop width */
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* =============================================================
   HERO & SECTION STYLES
============================================================= */
.hero {
  width: 100%;
  background: linear-gradient(120deg,#1A2639 80%, #232937 100%);
  min-height: 370px;
  padding: 65px 0 60px 0;
  box-shadow: 0 4px 28px 0 rgba(30,40,60,0.12);
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.95rem;
}
.hero .btn-primary {
  margin-top: 18px;
}
section {
  width: 100%;
  background: transparent;
  margin-bottom: 60px;
}
section:last-child {
  margin-bottom: 0;
}

/* Testimonials Styling - visible, readable on any surface! */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(52,60,70,0.12);
  border: 1px solid #e1e5eb;
  padding: 28px 26px;
  min-width: 240px;
  max-width: 420px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  transition: box-shadow 0.17s, border-color 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(30,40,60,0.19);
  border-color: var(--secondary);
}
.testimonial-card strong {
  color: var(--primary);
}

.overall-ratings {
  background: #242D36;
  border-radius: var(--radius);
  color: #F5F7FA;
  font-size: 1.17rem;
  font-family: var(--font-body);
  margin-top: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 13px 0 rgba(28,31,38,0.09);
}
.overall-ratings img {
  height: 22px;
  margin-right: 10px;
}

/* Service and Experience Cards (Servizi/Esperienze) */
.service-cards, .experience-cards {
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div, .experience-cards > div {
  min-width: 260px;
  max-width: 370px;
  background: var(--surface);
  color: var(--accent);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, border-color 0.15s;
}
.service-cards > div:hover,
.experience-cards > div:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 28px 0 rgba(40,43,56,0.19);
}
.service-cards h3, .experience-cards h2 {
  font-family: var(--font-body);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}
.service-cards .price, .experience-cards .price {
  font-size: 1.07rem;
  margin-top: 8px;
}

/* Included Services Grid */
.included-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.included-services-grid li {
  min-width: 198px;
  max-width: 336px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #212531;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1.03rem;
  color: var(--accent);
}
.included-services-grid img {
  width: 32px; height: 32px;
}

/* Yacht List for .flotta.html */
.yacht-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.yacht-list > li {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 30px 20px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 260px;
  max-width: 540px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.13s;
}
.yacht-list > li:hover {
  border-color: var(--secondary);
  box-shadow: 0 10px 30px 0 rgba(40,43,56,0.12);
}
.yacht-list h2 {
  color: var(--secondary);
  font-size: 1.32rem;
  margin-bottom: 6px;
}
.yacht-list ul {
  gap: 7px;
  color: var(--metal);
  font-size: 1rem;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #F5F7FA;
  margin-bottom: 10px;
}
.faq-list li {
  background: #161B23;
  padding: 13px 19px;
  border-radius: 8px;
  border: 1px solid #22262E;
  font-size: 1.03rem;
}

/* Contact Details + Social */
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.contact-details img {
  width: 22px;
  height: 22px;
  opacity: 0.92;
}
.touchpoints-social {
  display: flex;
  gap: 22px;
  margin-top: 16px;
}
.touchpoints-social img {
  width: 32px; height: 32px;
  transition: filter 0.15s;
  filter: grayscale(65%);
}
.touchpoints-social a:hover img,
.touchpoints-social a:focus img {
  filter: grayscale(0%) brightness(1.15);
}
.map-snippet {
  margin: 18px 0 0 0;
}
.map-snippet img {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
}

/* Footer Styling */
footer {
  width: 100%;
  background: var(--dark);
  margin-top: 36px;
  border-top: 1px solid var(--border);
  box-shadow: 0 2px 12px 0 rgba(24,31,38,0.10);
}
.footer-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer-nav a {
  font-family: var(--font-body);
  color: #A0AABE;
  font-size: 0.99rem;
  opacity: 0.9;
  transition: color 0.12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
footer .logo-link img {
  height: 36px;
}

/* =============================================================
   RESPONSIVE ADJUSTMENTS (Mobile First)
============================================================= */
@media (max-width: 900px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-flex { gap: 18px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .content-wrapper {
    gap: 20px;
    padding: 0;
  }
  .section {
    margin-bottom: 35px;
    padding: 26px 7px;
  }
  .feature-grid, .service-cards, .experience-cards, .testimonial-list, .included-services-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav { display: none; }
  .hero {
    min-height: 220px;
    padding: 36px 0 30px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .feature-grid > div, .service-cards > div, .experience-cards > div, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 20px 12px;
  }
  .included-services-grid li {
    min-width: 0;
    max-width: 100%;
    padding: 9px 10px;
  }
  .yacht-list > li {
    min-width: 0;
    max-width: 100%;
    padding: 16px 9px 12px 12px;
  }
  .footer-nav { gap: 10px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 544px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  .container { padding: 0 2vw; }
  .footer-flex { padding: 16px 0 8px 0; }
}

/* Ensure text in testimonials is dark for contrast! */
.testimonial-card,
.testimonial-card p,
.testimonial-card span,
 

/* =============================================================
   INTERACTIONS & MICRO-ANIMATIONS
============================================================= */
a, button, .btn-primary, .btn-secondary {
  transition: color 0.20s, background 0.18s, box-shadow 0.14s, border-color 0.13s, transform 0.12s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}

/* Focus rings for accessibility */
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* =============================================================
   COOKIE CONSENT BANNER
============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #191E25;
  box-shadow: 0 -2px 20px 0 rgba(30,40,60,0.12);
  border-top: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 120;
  padding: 22px 16px 20px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.24s, transform 0.24s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  max-width: 520px;
  color: var(--accent);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  padding: 11px 22px;
  border-radius: 35px;
  font-weight: 600;
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  transition: background 0.16s, color 0.13s;
  font-family: var(--font-body);
  font-size: 1.07rem;
}
.cookie-banner button.cookie-decline {
  background: transparent;
  color: var(--secondary);
}
.cookie-banner button.cookie-decline:hover {
  background: #283046;
  color: var(--accent);
}
.cookie-banner button.cookie-settings {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-banner button.cookie-settings:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,30,39,0.36);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #191E25;
  border-radius: 18px;
  box-shadow: 0 6px 48px 0 rgba(20,28,42,0.17);
  padding: 38px 28px 24px 28px;
  width: 97vw;
  max-width: 370px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--accent);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s, opacity 0.15s;
}
.cookie-modal.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-close {
  position: absolute; top: 10px; right: 16px;
  font-size: 1.55rem;
  background: none;
  color: var(--secondary);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--surface);
}
.cookie-modal h2 {
  font-size: 1.38rem;
  font-family: var(--font-display);
  color: var(--secondary);
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.01rem;
  color: var(--accent);
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 42px; height: 24px;
  border-radius: 12px;
  border: 1px solid var(--metal);
  background: #1A2639;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s, border 0.11s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--secondary);
  border: 1.6px solid var(--secondary);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 2.5px;
  width: 19px; height: 19px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(120,130,150,0.10);
  transition: transform 0.15s;
}
.cookie-modal .cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .cookie-category-desc {
  color: #A2ADC1;
  font-size: 0.97rem;
  margin-left: 4px;
  margin-top: 2px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 1.07rem;
  font-weight: 600;
}
.cookie-modal .cookie-actions .cookie-save {
  background: var(--secondary); color: var(--primary); border: 2px solid var(--secondary); }
.cookie-modal .cookie-actions .cookie-cancel {
  background: var(--primary); color: var(--secondary); border: 2px solid var(--secondary); }
.cookie-modal .cookie-actions .cookie-cancel:hover { background: var(--secondary); color: var(--primary); }

/* Ensure cookie banner/modal overlays all content! */

/* =============================================================
   HELPER CLASSES and COMMON OVERRIDES
============================================================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.fw-bold { font-weight: 700; }

/* Prevent image drag ghosting (esp. logo) */
img, svg { user-drag: none; user-select: none; -webkit-user-drag: none;
max-width: 200px; }

/* Fine-tuned for overlap and stacking */
.mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  z-index: 5000 !important;
}

/* =============================================================
   END OF INDUSTRIAL MODERN CSS THEME FOR ONDA LIGURIA YACHT
============================================================= */
