@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Montserrat:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f7f5f2;
    color: #1f2f44;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
}

h1,
h2 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

/* ===============================
   HEADER
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 18, 30, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* ===============================
   HEADER SCROLL STATE
================================ */
/*
.site-header.scrolled {
    background: rgba(10, 18, 30, 0.94);
    box-shadow: 0 12px 34px rgba(0,0,0,0.25);
}

.site-header.scrolled .desktop-header-top {
    padding: 12px 40px 10px;
}

.site-header.scrolled .desktop-nav {
    padding: 10px 40px 12px;
}*/
.desktop-header {
    display: block;
}

.mobile-header {
    display: none;
}

.desktop-header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.desktop-header-spacer {
    min-height: 1px;
}

/*.brand-text {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: #d6c3a1;
    text-transform: none;
    white-space: nowrap;
}*/

.brand-text {
    text-align: center;
    font-size: 13px;
    letter-spacing: 5px;
    color: #c7a85a;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

.desktop-header-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
}

.desktop-nav {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    border-top: 1px solid rgba(214, 195, 161, 0.14);
}

.desktop-nav a,
.mobile-nav a {

    position: relative;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;

}

.desktop-nav a {
    position: relative;
    padding-bottom: 6px;
}
.nav-indicator{
    position:absolute;
    bottom:0;
    height:2px;
    background:#d6c3a1;
    border-radius:2px;
    width:0;
    left:0;
    opacity:0;
    transition:
        left .45s cubic-bezier(.25,.8,.25,1),
        width .45s cubic-bezier(.25,.8,.25,1),
        opacity .25s ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #d6c3a1;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}
.desktop-nav a:hover,
.mobile-nav a:hover,
.lang-switch a:hover,
/* ===============================
   MENU ACTIVE STATE
================================ */

.desktop-nav a.active,
.mobile-nav a.active {
    color: #c7a85a;
}

/*.desktop-nav a.active::after {
    width: 100%;
}*/
.ig-icon:hover {
    color: #c7a85a;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.35s ease;
}

.ig-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.35s ease, transform 0.35s ease;
}

.ig-icon:hover {
    color: #d6c3a1;
    transform: translateY(-1px);
}

.lang-flag img {
    width: 40px;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.lang-flag:hover img {
    transform: scale(1.1);
    opacity: 1;
}


/* ===============================
   MOBILE HEADER
================================ */

.mobile-header-row {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mobile-header .brand-text {
    text-align: left;
    font-size: 10px;
    letter-spacing: 1.8px;
    line-height: 1;
    white-space: nowrap;
    max-width: none;
}

.mobile-header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-lang-switch {
    gap: 10px;
}

.mobile-lang-switch a {
    font-size: 11px;
    letter-spacing: 1px;
}

/* mobile adjustment */
.mobile-lang-switch .lang-flag img {
    width: 20px;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 22px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #0f1a28;
    transition: max-height 0.35s ease, padding 0.35s ease;
    border-top: 1px solid rgba(199, 168, 90, 0.12);
}

.mobile-nav.open {
    max-height: 420px;
    padding: 8px 0 14px;
}

.mobile-nav a {
    display: block;
    text-align: center;
    padding: 14px 20px;
}

/* ===============================
   LOADER
================================ */
/*
#loader {
    position: fixed;
    inset: 0;
    background: #0f1a28;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #d6c3a1;
    text-align: center;
    padding: 0 20px;
}
*/
/* ===============================
   HERO
================================ */

.hero {
    position: relative;
    min-height: 100vh;
    background: url('../img/hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 190px 20px 80px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 20, 35, 0.58), rgba(10, 20, 35, 0.76));
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #ffffff;
}

.hero-cta{

  display:inline-block;
  margin-top:32px;

  padding:16px 34px;

  background:#d6c3a1;
  color:#1f2f44;

  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;

  text-decoration:none;

  transition:all .35s ease;

  }

  .hero-cta:hover{

  background:#ffffff;
  color:#1f2f44;

}
.hero-cta-note{

  margin-top:10px;

  font-size:11px;
  letter-spacing:1px;

  color:rgba(255,255,255,0.75);

}
.logo-hero {
    width: min(460px, 70vw);
    margin: 0 auto 26px;
    opacity: 0.96;
}

.hero-privilege {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(199, 168, 90, 0.92);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.35s ease, border-color 0.35s ease;
}

.hero-privilege:hover {
    color: #c7a85a;
    border-color: #c7a85a;
}

.hero h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.55;
}

.hero h1::after {
    content: "";
    display: block;
    width: 82px;
    height: 1px;
    background: #c7a85a;
    margin: 30px auto 0;
}
/* ===============================
   HERO LOGO REVEAL
================================ */

.hero--logo-reveal {
    overflow: hidden;
}

.hero--logo-reveal .hero-inner--logo-reveal {
    position: relative;
}

/* Logo: parte invisibile e piccolo, poi cresce */
.logo-hero--reveal {
    width: min(560px, 82vw);
    margin: 0 auto 26px;
    opacity: 0;
    transform: scale(0.18);
    transform-origin: center center;
    filter: blur(10px);
    animation: logoRevealGrow 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity, filter;
}

/* Gli altri elementi entrano dopo */
.hero--logo-reveal .hero-privilege,
.hero--logo-reveal h1,
.hero--logo-reveal .hero-cta,
.hero--logo-reveal .hero-cta-note {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

body.hero-reveal-active .hero--logo-reveal .hero-privilege {
    animation: heroTextFadeUp 0.9s ease forwards;
    animation-delay: 1.95s;
}

body.hero-reveal-active .hero--logo-reveal h1 {
    animation: heroTextFadeUp 1s ease forwards;
    animation-delay: 2.15s;
}

body.hero-reveal-active .hero--logo-reveal .hero-cta {
    animation: heroTextFadeUp 0.9s ease forwards;
    animation-delay: 2.4s;
}

body.hero-reveal-active .hero--logo-reveal .hero-cta-note {
    animation: heroTextFadeUp 0.9s ease forwards;
    animation-delay: 2.6s;
}

@keyframes logoRevealGrow {
    0% {
        opacity: 0;
        transform: scale(0.18);
        filter: blur(12px);
    }
    20% {
        opacity: 0.18;
    }
    45% {
        opacity: 0.65;
        filter: blur(5px);
    }
    75% {
        opacity: 0.92;
        transform: scale(1.03);
        filter: blur(1px);
    }
    100% {
        opacity: 0.98;
        transform: scale(1);
        filter: blur(0);
    }
}
@keyframes heroTextFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stato senza animazione */
body.no-hero-reveal .logo-hero--reveal,
body.no-hero-reveal .hero--logo-reveal .hero-privilege,
body.no-hero-reveal .hero--logo-reveal h1,
body.no-hero-reveal .hero--logo-reveal .hero-cta,
body.no-hero-reveal .hero--logo-reveal .hero-cta-note {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .logo-hero--reveal {
        width: min(470px, 80vw);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-hero--reveal {
        width: min(320px, 82vw);
        margin-bottom: 20px;
    }
}

/* Accessibilità */
@media (prefers-reduced-motion: reduce) {
    .logo-hero--reveal,
    .hero--logo-reveal .hero-privilege,
    .hero--logo-reveal h1,
    .hero--logo-reveal .hero-cta,
    .hero--logo-reveal .hero-cta-note {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
/* ===============================
   SECTIONS
================================ */

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 128px 40px;
}

.section-title {
    text-align: center;
    font-size: 34px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c7a85a;
    margin-bottom: 70px;
}

.contact-title {
    text-align: center;
    font-size: 34px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* ===============================
   HOME PORT LUXURY
================================ */

.porto-luxury {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: stretch;
}

.porto-image {
    overflow: hidden;
    border-radius: 4px;
    min-height: 520px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.porto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.porto-image:hover img {
    transform: scale(1.04);
}

.porto-card {
    background: #ffffff;
    border: 1px solid rgba(199, 168, 90, 0.22);
    border-radius: 4px;
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.04);
}

.porto-label {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #c7a85a;
}

.porto-card h3 {
    margin: 0 0 12px;
    font-size: 30px;
    letter-spacing: 1.5px;
    color: #142844;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.porto-location {
    margin: 0 0 24px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(31, 47, 68, 0.58);
}

.porto-card p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.85;
    color: #1f2f44;
}

.porto-btn {
    display: inline-block;
    width: fit-content;
    margin-top: 12px;
    padding: 15px 30px;
    background: #1f2f44;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.porto-btn:hover {
    background: #d6c3a1;
    color: #1f2f44;
    transform: translateY(-1px);
}

/* ===============================
   YACHT
================================ */

.yacht-text,
.experience-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.85;
}

.yacht-text {
    margin-bottom: 90px;
}

.experience-text p,
.yacht-text p {
    margin-bottom: 22px;
}

/* ===============================
   GALLERIES
================================ */

.gallery,
.experience-gallery {
    max-width: 850px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item,
.experience-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid rgba(199, 168, 90, 0.4);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.gallery-item:hover,
.experience-item:hover {
    transform: scale(1.03);
    border-color: #c7a85a;
}

/* ===============================
   DESTINATIONS
================================ */

#destinazioni {
    max-width: 950px;
}

.destination-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.destination-block.reverse {
    direction: rtl;
}

.destination-block.reverse .destination-text {
    direction: ltr;
}

.destination-text h3 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.destination-text p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.destination-image {
    overflow: hidden;
    border-radius: 4px;
}

.destination-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.6s ease;
}

.destination-image:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.destination-note {
    text-align: center;
    font-size: 14px;
    opacity: 0.75;
    margin-top: 20px;
}

/* ===============================
   PRICING
================================ */

#prezzi {
    position: relative;
    overflow: hidden;
}

.price-privacy-note {
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.4px;
    font-weight: 500;
    color: #1f2f44;
}

.price-badge-wrapper {
    text-align: center;
    margin: 40px 0 50px;
}

.price-badge-wrapper::before,
.price-badge-wrapper::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background: #c7a85a;
    margin: 18px auto;
}

.price-badge {
    display: inline-block;
    padding: 10px 28px;
    background: #c7a85a;
    color: #0f1a28;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.pricing-box {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.pricing-box::before {
    content: "";
    display: block;
    width: 570px;
    height: 1px;
    background: #c7a85a;
    margin: 0 auto 22px auto;
}

.price-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 30px;
    padding: 28px 0;
    border-bottom: 2px solid rgba(199, 168, 90, 0.18);
    font-size: 16px;
}

.price-item > span {
    display: block;
    max-width: 520px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2f44;
}

.price-guests {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.8px;
    color: #1f2f44;
    font-weight: 400;
}

.price-item strong {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 1.2px;
    color: #1f2f44;
    white-space: nowrap;
}

.price-note {
    max-width: 760px;
    margin: 5px auto 0;
    font-size: 14px;
    line-height: 1.85;
    color: #1f2f44;
    text-align: left;
}

.price-cta,
.submit-btn {
    display: inline-block;
    padding: 15px 34px;
    background: #1f2f44;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}

.price-cta {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 17px 40px;
    letter-spacing: 2.5px;
}

.price-cta:hover,
.submit-btn:hover {
    background: #d6c3a1;
    color: #1f2f44;
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===============================
   CONTACT FORM
================================ */

.contact-form {
    max-width: 850px;
    margin: 60px auto 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.form-row.full {
    flex-direction: column;
}

.form-row > * {
    min-width: 0;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    font-size: 15px;
    font-family: inherit;
    color: #1f2f44;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d6c3a1;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

#charCount {
    font-size: 12px;
    color: #888888;
    margin-top: -10px;
    margin-bottom: 25px;
}

.form-success {
    max-width: 850px;
    margin: 35px auto 45px;
    background: #ffffff;
    border-left: 4px solid #c7a85a;
    padding: 28px 35px;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #1f2f44;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    animation: fadeDown 0.6s ease;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

#charter-date.invalid {
    border-color: #c94f4f !important;
    background: #fff8f8;
}

.date-error {
    width: 100%;
    max-width: 850px;
    margin: -8px auto 22px;
    font-size: 13px;
    color: #c94f4f;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.date-error.visible {
    opacity: 1;
    transform: translateY(0);
}

.shake {
    animation: subtleShake 0.35s ease;
}

/* ===============================
   LIGHTBOX
================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 6px;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.show .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.nav:hover,
.close:hover {
    color: #c7a85a;
}

/* ===============================
   FOOTER
================================ */

.site-footer {
    background: #0f1a28;
    color: #f7f5f2;
    padding: 80px 40px 40px;
    margin-top: 120px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #c7a85a;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.75;
    opacity: 0.85;
    margin-bottom: 10px;
}

.footer-col a {
    color: #f7f5f2;
    text-decoration: none;
    transition: color 0.35s ease;
}

.footer-col a:hover {
    color: #c7a85a;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    opacity: 0.65;
    letter-spacing: 1px;
}
/* ===============================
   COOKIE BANNER
================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f1a28;
    color: #ffffff;
    padding: 16px 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-content a {
    color: #c7a85a;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-btn {
    background: #c7a85a;
    color: #0f1a28;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #d6c3a1;
}

/* ===============================
   ANIMATIONS
================================ */

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleShake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

/* ===============================
   TABLET
================================ */

@media (max-width: 1024px) {
    .desktop-header-top {
        padding: 18px 24px 12px;
    }

    .desktop-nav {
        padding: 0 24px 16px;
        gap: 24px;
    }

    .desktop-nav a {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .logo-hero {
        width: min(360px, 72vw);
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    section {
        padding: 120px 30px;
    }

    .gallery,
    .experience-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-block {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .destination-block.reverse {
        direction: ltr;
    }

    .destination-image img {
        height: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 130px 20px 70px;
        min-height: 100vh;
    }

    .logo-hero {
        width: min(260px, 72vw);
        margin-bottom: 20px;
    }

    .hero-privilege {
        white-space: normal;
        font-size: 10px;
        letter-spacing: 1.8px;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: 20px;
        letter-spacing: 2px;
        line-height: 1.5;
    }

    .hero h1::after {
        width: 60px;
        margin-top: 22px;
    }

    section {
        padding: 90px 20px;
    }

    .section-title,
    .contact-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .section-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .yacht-text,
    .experience-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .destination-text p,
    .footer-col p {
        font-size: 14px;
        line-height: 1.75;
    }

    .destination-block {
        margin-bottom: 70px;
    }

    .destination-image img {
        height: 220px;
    }

    .gallery,
    .experience-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
        padding: 18px 0;
    }

    .price-note,
    .price-privacy-note,
    .destination-note {
        font-size: 13px;
        line-height: 1.65;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    #charCount {
        margin-top: 0;
    }

    .submit-btn,
    .price-cta {
        width: 100%;
        text-align: center;
    }

    .close {
        top: 18px;
        right: 20px;
        font-size: 30px;
    }

    .nav {
        font-size: 34px;
        padding: 12px;
    }

    .prev {
        left: 8px;
    }

    .next {
        right: 8px;
    }

    .site-footer {
        padding: 60px 20px 30px;
        margin-top: 80px;
    }

    .footer-bottom {
        margin-top: 40px;
        font-size: 11px;
        line-height: 1.5;
    }
        .porto-luxury {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .porto-image {
        min-height: 300px;
    }

    .porto-card {
        padding: 28px 24px;
    }

    .porto-card h3 {
        font-size: 24px;
    }

    .porto-card p {
        font-size: 14px;
        line-height: 1.8;
    }

    .porto-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   SMALL MOBILE
================================ */

    @media (max-width: 480px) {
    .mobile-header .brand-text {
        max-width: none;
        font-size: 9px;
        letter-spacing: 1.4px;
        white-space: nowrap;
    }

    .mobile-lang-switch a {
        font-size: 10px;
    }

    .logo-hero {
        width: min(220px, 74vw);
    }

    .hero h1 {
        font-size: 18px;
    }

    .section-title,
    .contact-title {
        font-size: 22px;
    }

    .gallery,
    .experience-gallery {
        grid-template-columns: 1fr;
    }

    .destination-image img {
        height: 200px;
    }
}