/* --- CSS RESET & BASE --- */
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;
    font-size: 16px;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    line-height: 1.6;
    background: #fff;
    color: #283D6A;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: #283D6A;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #E3A008;
    outline: none;
}
ul, ol {
    margin-left: 1.4em;
    margin-bottom: 16px;
}
li {
    margin-bottom: 10px;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #283D6A;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.13;
}
h2, .h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #283D6A;
    margin-bottom: 12px;
    line-height: 1.2;
}
h3, .h3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    color: #283D6A;
    font-weight: 700;
    margin-bottom: 8px;
}
p, .text-section p {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #283D6A;
    margin-bottom: 16px;
}
.subtitle {
    font-size: 1.25rem;
    color: #6B7687;
    margin-bottom: 24px;
    font-weight: 400;
}
strong { font-weight: 700; }

@media (max-width: 768px) {
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.1rem; }
    p, .text-section p { font-size: 1rem; }
    .subtitle { font-size: 1.1rem; }
}

/* --- LAYOUT CONTAINERS --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.content-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 10px;
        margin-bottom: 32px;
    }
}

/* --- HEADER & NAVIGATION --- */
header {
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(30,38,61,0.05);
    position: relative;
    z-index: 30;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
.logo img {
    height: 52px;
    width: auto;
    display: block;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 8px 0;
    color: #283D6A;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.18s, background 0.18s;
    position: relative;
}
.main-nav a:focus, .main-nav a:hover {
    color: #E3A008;
    background: #F4F6F8;
}
.cta-button {
    display: inline-block;
    border-radius: 24px;
    padding: 10px 28px;
    background: #E3A008;
    color: #fff !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(78,78,78,0.07);
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cta-button:hover, .cta-button:focus {
    background: #c88c06;
    color: #fff;
    transform: translateY(-1px) scale(1.045);
    box-shadow: 0 4px 18px 0 rgba(30,38,61,0.09);
    outline: none;
}

button:focus {
    outline: 2px solid #283D6A;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: #283D6A;
    cursor: pointer;
    z-index: 51;
    transition: color 0.18s;
    padding: 8px 8px;
    margin-left: auto;
}
.mobile-menu-toggle:focus {
    color: #E3A008;
}
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 84vw;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 32px 0 rgba(40,61,106,0.18);
    z-index: 100;
    transform: translateX(-110%);
    transition: transform 0.34s cubic-bezier(.71,-0.01,.23,.99);
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 40px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #283D6A;
    font-size: 2.1rem;
    align-self: flex-end;
    margin: 0 16px 16px 0;
    cursor: pointer;
    transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #E3A008;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 24px;
    margin-top: 12px;
}
.mobile-nav a {
    font-size: 1.12rem;
    color: #283D6A;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.15s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
    color: #E3A008;
    background: #F4F6F8;
}
@media (max-width: 1100px) {
    header .container {
        padding: 0 14px;
    }
}
@media (max-width: 980px) {
    .main-nav {
        gap: 18px;
    }
    .logo img { height: 44px; }
}
@media (max-width: 850px) {
    .main-nav {
        gap: 14px;
    }
    .logo img { height: 38px; }
}
@media (max-width: 768px) {
    header .container {
        height: 60px;
        padding: 0 8px;
        gap: 0;
    }
    .main-nav, .cta-button {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}

/* --- HERO / TOP SECTION --- */
main > section:first-of-type {
    padding-top: 44px;
    padding-bottom: 0;
    background: #F4F6F8;
    border-bottom: 1px solid #EAEDF0;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    main > section:first-of-type {
        padding-top: 18px;
    }
}

/* --- CARDS, FEATURES, GRID --- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 auto;
}
.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgba(40,61,106,0.07);
    padding: 32px 24px;
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .card:focus-within {
    box-shadow: 0 6px 24px 0 rgba(40,61,106,0.11);
    transform: translateY(-2px) scale(1.012);
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .content-grid, .card-container {
        flex-direction: column;
        gap: 18px;
    }
    .text-image-section {
        flex-direction: column;
        gap: 16px;
    }
}

/* --- FEATURES LIST --- */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.06rem;
    color: #283D6A;
    background: #F4F6F8;
    border-radius: 14px;
    padding: 16px 20px;
    font-weight: 500;
    box-shadow: 0 1.5px 6px 0 rgba(40,61,106,0.04);
}
.features-list img {
    width: 32px;
    height: 32px;
    margin-right: 0;
}
@media (max-width: 540px) {
    .features-list li {
        font-size: 1rem;
        gap: 11px;
        padding: 11px 13px;
    }
    .features-list img {
        width: 25px;
        height: 25px;
    }
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 26px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 18px 0 rgba(40,61,106,0.10);
    margin-bottom: 20px;
    max-width: 500px;
    min-width: 230px;
    transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
    box-shadow: 0 8px 32px 0 rgba(40,61,106,0.15);
    transform: translateY(-1.7px) scale(1.008);
}
.testimonial-card p {
    color: #283D6A;
    font-size: 1.08rem;
    margin-bottom: 0;
}
.testimonial-card span {
    color: #6B7687;
    font-size: 0.97rem;
    font-style: italic;
}
.testimonial-card strong {
    color: #283D6A;
}
@media (max-width: 768px) {
    .testimonials-grid {
        flex-direction: column;
        gap: 18px;
    }
}

/* --- BUTTONS & FORMS --- */
button, .cta-button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    border: none;
    appearance: none;
    outline: none;
}

button:active, .cta-button:active {
    outline: none;
}

/* --- GALLERY & MISCELLANEOUS --- */
.booking-cta {
    margin: 24px 0 0 0;
}

/* --- ADDRESS & FOOTER --- */
footer {
    background: #f7f7f7;
    border-top: 1px solid #EAEDF0;
    padding: 40px 0 20px 0;
}
footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 10px;
}
.footer-nav a {
    color: #8B99B1;
    font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #E3A008;
    background: none;
}
address {
    text-align: center;
    font-style: normal;
    color: #6B7687;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
@media (max-width: 768px) {
    footer {
        padding: 28px 0 14px 0;
    }
    .footer-nav {
        gap: 8px;
        font-size: .97rem;
    }
    address {
        font-size: .97rem;
    }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #fff;
    color: #283D6A;
    box-shadow: 0 -2px 18px 0 rgba(40,61,106,0.13);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 16px 16px 16px;
    gap: 22px;
    font-size: 1rem;
    animation: cookie-slide-in 0.34s cubic-bezier(.44,.96,.64,.98);
}
@keyframes cookie-slide-in {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}
.cookie-banner button {
    border-radius: 24px;
    padding: 8px 22px;
    margin: 0 3px;
    font-size: 1rem;
    background: #F4F6F8;
    color: #283D6A;
    font-weight: 600;
    border: 1px solid #E3A008;
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-banner button.accept {
    background: #E3A008;
    color: #fff;
    border: 1px solid #E3A008;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
    background: #c88c06;
    color: #fff;
}
.cookie-banner button.reject {
    background: #FFF;
    color: #283D6A;
    border: 1px solid #EAEDF0;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
    background: #ECEEF1;
}
.cookie-banner button.settings {
    background: #F4F6F8;
    color: #283D6A;
    border: 1px solid #F4F6F8;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
    background: #EAEDF0;
}
@media (max-width: 650px) {
    .cookie-banner {
        font-size: .96rem;
        flex-direction: column;
        gap: 13px;
        padding: 10px 6px 8px 6px;
    }
    .cookie-banner__actions{
        flex-direction: column;
        gap: 10px;
    }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 42px 0 rgba(40,61,106,0.17);
    z-index: 2200;
    min-width: 95vw;
    max-width: 430px;
    padding: 32px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: cookie-modal-fade-in .24s cubic-bezier(.44,.97,.58,.96);
}
@keyframes cookie-modal-fade-in {
    from { opacity: 0; transform: translate(-50%,-50%) scale(.94); }
    to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.06rem;
    color: #283D6A;
}
.cookie-category label {
    cursor: pointer;
}
.cookie-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #283D6A;
    font-size: 1.55rem;
    cursor: pointer;
    z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: #E3A008;
}
.cookie-actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.cookie-modal input[type="checkbox"] {
    accent-color: #E3A008;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}
.cookie-category.essential label {
    opacity: 0.7;
}
.cookie-category.essential input[type="checkbox"] {
    pointer-events: none;
    accent-color: #8B99B1;
}
@media (max-width: 430px) {
    .cookie-modal {
        padding: 20px 6px 10px 6px;
        min-width: 99vw;
    }
    .cookie-modal h2 { font-size: 1rem; }
    .cookie-category { font-size: .98rem; }
}

/* --- ANIMATIONS & TRANSITIONS --- */
.cta-button, .card, .testimonial-card, .features-list li {
    transition: box-shadow 0.19s, transform 0.17s, background 0.18s, color 0.18s;
}

/* --- GENERIC SPACING UTILITIES --- */
.mb-40 { margin-bottom: 40px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-16 { margin-top: 16px !important; }
.pt-32 { padding-top: 32px !important; }

/* --- RESPONSIVE CLASSES & SPACING --- */
@media (max-width: 480px) {
    .container {
        padding: 0 7px;
    }
}

/* --- HIDE/SHOW UTILITY FOR JS --- */
.hide { display: none !important; }

/* --- ACCESSIBILITY FOCUS INDICATORS --- */
a:focus, button:focus, .cta-button:focus {
    outline: 2px solid #E3A008 !important;
    outline-offset: 2px;
    z-index: 1003;
}

/* --- MISC --- */
::-webkit-input-placeholder { color: #6B7687; }
::-moz-placeholder { color: #6B7687; }
:-ms-input-placeholder { color: #6B7687; }
::placeholder { color: #6B7687; }