/* =========================================================
   SPA WEBSITE - GLOBAL STYLES
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --color-bg: #f6f3ed;
    --color-bg-soft: #eee9df;
    --color-white: #ffffff;

    --color-primary: #26372f;
    --color-primary-dark: #18251f;
    --color-secondary: #68776b;

    --color-accent: #b79a68;
    --color-accent-dark: #947a4d;

    --color-text: #242923;
    --color-text-light: #6d716a;

    --color-border: rgba(38, 55, 47, 0.12);

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Manrope", sans-serif;

    --container: 1240px;

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --transition: 300ms ease;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-label {
    color: var(--color-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 0.98;
}

.section-description {
    color: var(--color-text-light);
    max-width: 620px;
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

.text-center .section-description {
    margin-inline: auto;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 28px;

    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-gold {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-gold:hover {
    background: var(--color-accent-dark);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    padding: 9px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    transition: color var(--transition);
}

.top-bar a:hover {
    color: var(--color-accent);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;
    z-index: 1000;
    top: 36px;
    left: 0;
    width: 100%;
    color: var(--color-white);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    width: 64px;
    height: 64px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1;
}

.logo-subtitle {
    display: block;
    margin-top: 3px;

    font-family: var(--font-body);
    font-size: 8px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.75;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--color-accent);

    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-actions .btn {
    min-height: 44px;
    padding-inline: 20px;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;
    color: white;

    border: 1px solid rgba(255, 255, 255, .4);
    cursor: pointer;
    border-radius: 4px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: white;
    margin: 5px auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav open state — slide-in panel from right */
.nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: auto;
    max-height: 100vh;
    background: #26372f;
    z-index: 1000;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0 0 24px;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    animation: slideInRight 0.25s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

/* hide close row on desktop */
.nav-close-item {
    display: none;
}

.nav-links.mobile-open .nav-close-item {
    display: flex !important;
    justify-content: flex-end;
    width: 100%;
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.nav-links.mobile-open li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links.mobile-open li a {
    display: block;
    padding: 16px 24px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.nav-links.mobile-open li a:hover {
    color: #b79a68;
}

/* dim overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}





/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 850px;

    display: flex;
    align-items: center;

    color: white;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Hero Overlay (darkens video) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(17, 29, 24, 0.86) 0%,
            rgba(17, 29, 24, 0.58) 45%,
            rgba(17, 29, 24, 0.22) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    padding-top: 90px;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: #e5d1a8;
}

.hero-eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(62px, 8vw, 112px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.025em;
}

.hero-title em {
    color: #d5bd91;
    font-style: italic;
}

.hero-description {
    max-width: 580px;
    margin: 30px 0;

    color: rgba(255, 255, 255, .82);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .7;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    background: var(--color-primary);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    padding: 28px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-number {
    display: block;

    color: #dfc99d;
    font-family: var(--font-heading);
    font-size: 32px;
}

.trust-text {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .75;
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.intro-image::after {
    content: "";

    position: absolute;
    right: -25px;
    bottom: -25px;

    width: 180px;
    height: 180px;

    border: 1px solid var(--color-accent);
    z-index: -1;
}

.intro-content {
    max-width: 570px;
}

.intro-content p {
    color: var(--color-text-light);
    margin-top: 24px;
}

.intro-content .btn {
    margin-top: 30px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: var(--color-bg-soft);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;

    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--color-white);
    overflow: hidden;
}

.service-image {
    overflow: hidden;
}

.service-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    width: 100%;
}

.service-image video {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    display: block;
}

transition: transform 700ms ease;
}

.service-video {
    max-width: 100%;
    height: auto;
    display: block;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-number {
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: .15em;
}

.service-title {
    margin-top: 8px;

    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-primary);
}

.service-description {
    color: var(--color-text-light);
    font-size: 13px;
    margin-top: 10px;
}

.service-link {
    display: inline-flex;
    margin-top: 20px;

    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   FEATURE SECTION
   ========================================================= */

.feature-section {
    background: var(--color-primary);
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.feature-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.feature-content .section-label {
    color: #d6bc89;
}

.feature-content .section-title {
    color: white;
}

.feature-content>p {
    margin-top: 24px;
    color: rgba(255, 255, 255, .7);
}

.feature-list {
    display: grid;
    gap: 22px;
    margin-top: 35px;
}

.feature-list li {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d6bc89;
    font-size: 14px;
    line-height: 1;
    padding-top: 1px;
}

.feature-list strong {
    display: block;
    font-size: 14px;
}

.feature-list span {
    display: block;
    margin-top: 4px;

    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}


/* =========================================================
   PACKAGES
   ========================================================= */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 55px;
}

.package-card {
    position: relative;

    padding: 38px;

    border: 1px solid var(--color-border);
    background: white;
}

.package-card.featured {
    background: var(--color-primary);
    color: white;
    transform: translateY(-15px);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;

    padding: 8px 14px;

    background: var(--color-accent);
    color: white;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 500;
}

.package-description {
    margin-top: 12px;

    color: var(--color-text-light);
    font-size: 13px;
}

.package-card.featured .package-description {
    color: rgba(255, 255, 255, .65);
}

.package-price {
    margin: 30px 0;

    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--color-primary);
}

.package-card.featured .package-price {
    color: #dec494;
}

.package-features {
    display: grid;
    gap: 12px;
}

.package-features li {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    font-size: 12px;
}

.package-card.featured .package-features li {
    border-color: rgba(255, 255, 255, .1);
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    background: var(--color-bg-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 10px;
    margin-top: 55px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 700ms ease;
}

.gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    margin-top: 55px;
}

.testimonial-card {
    padding: 35px;
    background: var(--color-bg);
}

.stars {
    color: var(--color-accent);
    letter-spacing: 4px;
}

.testimonial-text {
    margin: 25px 0;

    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.2;
}

.testimonial-author {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    max-width: 900px;
    margin: 55px auto 0;
}

.faq-item {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 0;

    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--color-primary);

    text-align: left;
    font-weight: 600;
    font-size: 16px;
    font-family: inherit;
}

.faq-icon {
    font-size: 20px;
    transition: transform var(--transition);
}

.faq-answer {
    display: none;

    max-width: 760px;
    padding: 0 0 24px;

    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block !important;
    max-height: 500px !important;
    overflow: visible !important;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* =========================================================
   CTA
   ========================================================= */

.final-cta {
    position: relative;

    padding: 130px 0;

    color: white;

    background:
        linear-gradient(rgba(25, 39, 32, .82),
            rgba(25, 39, 32, .82)),
        url("../images/hero/hero-main.jpg") center / cover no-repeat;
}

.final-cta .section-title {
    color: white;
    max-width: 800px;
    margin-inline: auto;
}

.final-cta p {
    max-width: 600px;
    margin: 24px auto 30px;

    color: rgba(255, 255, 255, .75);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #17231e;
    color: white;
    padding: 75px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 20px;

    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer-title {
    margin-bottom: 20px;

    color: #d6bc89;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 60px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    color: rgba(255, 255, 255, .4);
    font-size: 11px;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.whatsapp-float {
    position: fixed;
    z-index: 999;

    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;
    color: white;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);

    font-size: 25px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .intro-grid,
    .feature-grid {
        gap: 45px;
    }

    .services-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .section {
        padding: 75px 0;
    }

    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar-inner>span:first-child {
        display: none;
    }

    .site-header {
        top: 35px;
    }

    .hero {
        min-height: 750px;
    }

    .hero-title {
        font-size: clamp(54px, 16vw, 82px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .intro-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .intro-image::after {
        display: none;
    }

    .services-header {
        display: block;
    }

    .services-header .btn {
        margin-top: 25px;
    }

    .services-grid,
    .packages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}