/* =====================================================
   ROOT
===================================================== */

:root {

    --green: #0d543b;
    --green-dark: #073b2a;
    --green-light: #176b4b;

    --red: #b52027;
    --red-dark: #8d171d;

    --cream: #f7f0df;
    --cream-light: #fffaf0;

    --text: #25372f;
    --muted: #66736c;

    --white: #ffffff;

    --border: rgba(13, 84, 59, 0.14);

    --shadow: 0 20px 50px rgba(13, 84, 59, 0.12);
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;

    background: var(--cream);

    color: var(--text);

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   HERO
   EXACTLY 100VH
===================================================== */

.hero {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 650px;

    overflow: hidden;

    background: var(--cream);
}


/* =====================================================
   BACKGROUND VIDEO
===================================================== */

.bg-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    opacity: 1;

    filter:
        brightness(0.68)
        contrast(1.05)
        saturate(0.75);
}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(247, 240, 223, 0.97) 0%,
            rgba(247, 240, 223, 0.91) 32%,
            rgba(247, 240, 223, 0.62) 58%,
            rgba(247, 240, 223, 0.16) 100%
        );
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 20;

    background: rgba(255, 250, 240, 0.86);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.logo img {

    width: auto;

    height: 62px;

    object-fit: contain;
}


/* NAV */

.main-nav {

    display: flex;

    align-items: center;

    gap: 32px;
}


.main-nav a {

    position: relative;

    color: var(--green);

    font-size: 17px;

    font-weight: 600;

    transition: 0.3s ease;
}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--red);

    transition: 0.3s ease;
}


.main-nav a:hover,
.main-nav a.active {

    color: var(--red);
}


.main-nav a:hover::after,
.main-nav a.active::after {

    width: 100%;
}


/* NAV BUTTON */

.nav-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 20px;

    background: var(--red);

    color: var(--white);

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}


.nav-btn:hover {

    background: var(--red-dark);

    transform: translateY(-2px);
}


/* MOBILE NAV */

.nav-toggle {

    display: none;

    border: 0;

    background: var(--green);

    color: var(--white);

    width: 42px;

    height: 42px;

    border-radius: 4px;

    cursor: pointer;

    font-size: 17px;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 5;

    width: 100%;

    height: calc(100vh - 82px);

    margin-top: 82px;

    padding: 30px 7% 35px;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 30px;
}


/* =====================================================
   HERO LEFT
===================================================== */

.hero-left {

    max-width: 690px;
}


/* SUBTITLE */

.sub-title {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color: var(--red);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.sub-line {

    width: 28px;

    height: 2px;

    background: var(--red);
}


/* HEADING */

.hero-left h1 {

    font-family: "Cinzel", serif;

    font-size: clamp(3.5rem, 5.4vw, 5.7rem);

    line-height: 0.98;

    letter-spacing: -2px;

    color: var(--green);

    margin-bottom: 18px;
}


.hero-left h1 span {

    color: var(--red);
}


/* =====================================================
   PRICE
===================================================== */

.price-box {

    display: inline-flex;

    align-items: center;

    gap: 16px;

    padding: 9px 17px;

    margin-bottom: 15px;

    background: rgba(255, 250, 240, 0.92);

    border-left: 4px solid var(--red);

    box-shadow: 0 8px 25px rgba(13, 84, 59, 0.09);
}


.price-label {

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.price {

    color: var(--red);

    font-size: 22px;

    font-weight: 700;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {

    max-width: 570px;

    margin-bottom: 19px;

    color: #526158;

    font-size: 17px;

    line-height: 1.65;
}


/* =====================================================
   PROJECT POINTS
===================================================== */

.project-points {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    max-width: 650px;

    gap: 10px;

    margin-bottom: 23px;
}


.project-point {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;

    padding: 9px 6px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid rgba(13, 84, 59, 0.08);

    transition: 0.3s ease;
}


.project-point:hover {

    background: rgba(255, 250, 240, 0.55);
}


.point-arrow {

    flex: 0 0 29px;

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--green);

    color: white;

    font-size: 11px;

    transition: 0.3s ease;
}


.project-point:hover .point-arrow {

    background: var(--red);

    transform: translateX(4px);
}


.project-point strong {

    display: block;

    color: var(--green);

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;
}


.project-point small {

    display: block;

    margin-top: 2px;

    color: #7b857f;

    font-size: 17px;

    white-space: nowrap;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 11px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 12px 22px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;
}


.btn-primary {

    background: var(--red);

    color: white;

    box-shadow: 0 9px 22px rgba(181, 32, 39, 0.2);
}


.btn-primary:hover {

    background: var(--red-dark);

    transform: translateY(-3px);
}


.btn-secondary {

    border: 1px solid var(--green);

    color: var(--green);

    background: rgba(255, 250, 240, 0.5);
}


.btn-secondary:hover {

    background: var(--green);

    color: white;

    transform: translateY(-3px);
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.hero-right {

    position: relative;

    height: 100%;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-visual {

    position: relative;

    z-index: 4;

    width: min(450px, 36vw);

    animation: float 5s ease-in-out infinite;
}


.hero-visual img {

    width: 100%;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 35px rgba(13, 84, 59, 0.2));
}


/* DECORATIVE CIRCLE */

.visual-circle {

    position: absolute;

    width: min(550px, 42vw);

    height: min(550px, 42vw);

    border-radius: 50%;

    border: 1px solid rgba(13, 84, 59, 0.18);

    box-shadow:

        0 0 0 35px rgba(13, 84, 59, 0.025),

        0 0 0 70px rgba(13, 84, 59, 0.018);

    z-index: 2;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator {

    position: absolute;

    z-index: 8;

    bottom: 22px;

    left: 7%;

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--green);

    font-size: 17px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.scroll-indicator i {

    color: var(--red);

    animation: scrollArrow 1.5s infinite;
}


@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =====================================================
   PROJECT HIGHLIGHTS
   IMPORTANT:
   NO NEGATIVE MARGIN
   NO POSITION ABSOLUTE
===================================================== */

.project-highlights {

    position: relative;

    z-index: 10;

    width: 100%;

    min-height: 115px;

    padding: 22px 7%;

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    background: var(--green);

    box-shadow: 0 10px 35px rgba(13, 84, 59, 0.15);
}


.highlight {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: white;
}


.highlight-number {

    font-family: "Cinzel", serif;

    color: var(--cream);

    font-size: 28px;

    font-weight: 600;
}


.highlight strong {

    display: block;

    font-size: 12px;

    font-weight: 600;
}


.highlight small {

    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 17px;
}


.highlight-divider {

    width: 1px;

    height: 45px;

    background: rgba(255, 255, 255, 0.22);
}


/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    padding: 110px 7%;

    background: var(--cream-light);
}


.about-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;
}


/* IMAGE */
.about-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    width: min(100%, 380px);

    /* responsive height */
    aspect-ratio: 3 / 4;

    padding: 10px;

    background: var(--green);

    overflow: hidden;

    box-shadow: var(--shadow);

    border-radius: 2px;
}

.image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}
/* ABOUT CONTENT */

.section-tag {

    display: inline-block;

    margin-bottom: 14px;

    color: var(--red);

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 2px;
}


.about-content h2 {

    max-width: 650px;

    margin-bottom: 20px;

    color: var(--green);

    font-family: "Cinzel", serif;

    font-size: clamp(2.3rem, 4vw, 4rem);

    line-height: 1.15;
}


.about-content h2 span {

    color: var(--red);
}


.about-content p {

    max-width: 620px;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* FEATURES */

.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 28px;
}


.about-features div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--green);

    font-size: 17px;

    font-weight: 500;
}


.about-features i {

    color: var(--red);

    font-size: 17px;
}


.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    background: var(--green);

    color: white;

    border-radius: 4px;

    font-size: 17px;

    font-weight: 600;

    transition: 0.3s ease;
}


.about-btn:hover {

    background: var(--red);

    transform: translateY(-2px);
}

@media (max-width: 992px) {

    .image-frame {
        width: min(100%, 330px);
        aspect-ratio: 3 / 4;
    }
}
@media (max-width: 600px) {

    .about-image {
        padding: 0 15px;
    }

    .image-frame {
        width: 100%;
        max-width: 300px;

        aspect-ratio: 3 / 4;

        padding: 8px;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .main-nav {

        gap: 18px;
    }


    .hero-content {

        padding-left: 5%;

        padding-right: 5%;
    }


    .hero-left h1 {

        font-size: 4rem;
    }


    .hero-visual {

        width: 360px;
    }


    .visual-circle {

        width: 430px;

        height: 430px;
    }


    .project-highlights {

        padding-left: 4%;

        padding-right: 4%;
    }
}


/* =====================================================
   MOBILE NAV / TABLET
===================================================== */

@media (max-width: 800px) {

    .navbar {

        height: 75px;

        padding: 0 5%;
    }


    .logo img {

        height: 54px;
    }


    .nav-btn {

        display: none;
    }


    .nav-toggle {

        display: flex;

        align-items: center;

        justify-content: center;
    }


    .main-nav {

        position: absolute;

        top: 75px;

        left: 5%;

        width: 90%;

        padding: 22px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        background: var(--cream-light);

        border: 1px solid var(--border);

        box-shadow: var(--shadow);

        border-radius: 5px;
    }


    .main-nav.nav-open {

        display: flex;
    }


    /* HERO */

    .hero {

        height: 100svh;

        min-height: 650px;
    }


    .hero-content {

        height: calc(100svh - 75px);

        margin-top: 75px;

        padding: 25px 5% 45px;

        grid-template-columns: 1fr;

        gap: 10px;

        text-align: center;

        overflow-y: auto;
    }


    .hero-left {

        max-width: 700px;

        margin: auto;
    }


    .sub-title {

        justify-content: center;

        font-size: 17px;
    }


    .hero-left h1 {

        font-size: 3.5rem;

        letter-spacing: -1px;
    }


    .hero-description {

        margin-left: auto;

        margin-right: auto;
    }


    .project-points {

        margin-left: auto;

        margin-right: auto;
    }


    .hero-buttons {

        justify-content: center;
    }


    .hero-right {

        min-height: 230px;

        height: 230px;
    }


    .hero-visual {

        width: 240px;
    }


    .visual-circle {

        width: 290px;

        height: 290px;
    }


    .scroll-indicator {

        display: none;
    }


    /* HIGHLIGHTS */

    .project-highlights {

        min-height: auto;

        padding: 25px 5%;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .highlight-divider {

        display: none;
    }


    .about-container {

        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;
    }


    .about-content p {

        margin-left: auto;

        margin-right: auto;
    }


    .about-features {

        max-width: 500px;

        margin-left: auto;

        margin-right: auto;

        text-align: left;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 550px) {

    .hero {

        min-height: 680px;
    }


    .hero-content {

        padding: 20px 20px 35px;
    }


    .hero-left h1 {

        font-size: 2.8rem;

        margin-bottom: 12px;
    }


    .price-box {

        gap: 10px;

        padding: 7px 13px;
    }


    .price {

        font-size: 18px;
    }


    .hero-description {

        font-size: 12px;

        line-height: 1.55;

        margin-bottom: 12px;
    }


    .project-points {

        grid-template-columns: 1fr;

        gap: 4px;

        margin-bottom: 15px;
    }


    .project-point {

        justify-content: flex-start;

        padding: 6px 10px;
    }


    .project-point strong {

        font-size: 17px;
    }


    .project-point small {

        font-size: 17px;
    }


    .point-arrow {

        width: 26px;

        height: 26px;

        flex-basis: 26px;
    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

        gap: 7px;
    }


    .btn {

        width: 100%;

        padding: 10px 16px;
    }


    .hero-right {

        min-height: 150px;

        height: 150px;
    }


    .hero-visual {

        width: 160px;
    }


    .visual-circle {

        width: 190px;

        height: 190px;
    }


    /* HIGHLIGHTS */

    .project-highlights {

        grid-template-columns: 1fr 1fr;

        gap: 15px;

        padding: 22px 15px;
    }


    .highlight {

        gap: 7px;
    }


    .highlight-number {

        font-size: 22px;
    }


    .highlight strong {

        font-size: 17px;
    }


    .highlight small {

        font-size: 17px;
    }


    /* ABOUT */

    .about-section {

        padding: 75px 20px;
    }


    .image-frame {

        width: 290px;

        height: 330px;
    }


    .about-content h2 {

        font-size: 2.2rem;
    }


    .about-content p {

        font-size: 17px;
    }


    .about-features {

        grid-template-columns: 1fr;

        text-align: left;
    }
}

/* ==========================
   HIGHLIGHTS SECTION
========================== */

.highlights-section {
    padding: 50px 7%;
    background: var(--cream-light);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: auto auto 60px;
}

.section-header .section-tag {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-header h2 {
    margin: 15px 0;
    font-family: "Cinzel", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--green);
}

.section-header h2 span {
    color: var(--red);
}

.section-header p {
    color: var(--muted);
    line-height: 1.8;
}

/* GRID */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

/* CARD */

.highlight-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(13,84,59,0.08);
 padding: 24px 25px;
     transition: .4s ease;
    box-shadow: 0 10px 30px rgba(13,84,59,0.06);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--red);

    transition: .4s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13,84,59,0.12);
}

.highlight-card:hover::before {
    width: 100%;
    opacity: .03;
}

/* ICON */

.highlight-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);

    color: white;

    font-size: 22px;

    margin-bottom: 20px;

    transition: .4s;
}

.highlight-card:hover .highlight-icon {
    background: var(--red);
    transform: rotate(10deg);
}

.highlight-card h3 {
    color: var(--green);
    font-size: 20px;
    margin-bottom: 12px;
}

.highlight-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

/* TABLET */

@media (max-width: 992px) {

    .highlights-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* MOBILE */

@media (max-width: 600px) {

    .highlights-section {
        padding: 60px 20px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 20px 18px;
    }

    .highlight-card h3 {
        font-size: 18px;
    }
}

/* =========================================
   PRICE SECTION
========================================= */

.price-section {
    padding: 100px 7%;
    background: var(--cream-dark);
}


/* HEADER */

.price-section .section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.price-section .section-tag {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.price-section .section-header h2 {
    margin: 14px 0;
    font-family: "Cinzel", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.15;
    color: var(--green);
}

.price-section .section-header h2 span {
    color: var(--red);
}

.price-section .section-header p {
    max-width: 650px;
    margin: auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   PRICE GRID
========================================= */



/* =========================================
   PRICE CARD
========================================= */

.price-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 30px;

    min-height: 360px;

    background: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(13, 84, 59, 0.12);

    box-shadow: 0 12px 35px rgba(13, 84, 59, 0.06);

    overflow: hidden;

    transition: 0.4s ease;
}


.price-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--green);

    transition: 0.4s ease;
}


.price-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 22px 45px rgba(13, 84, 59, 0.13);

    border-color: rgba(181, 32, 39, 0.25);
}


.price-card:hover::before {
    background: var(--red);
}


/* =========================================
   FEATURED CARD
========================================= */

.price-card.featured {
    background: var(--green);

    border-color: var(--green);

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(13, 84, 59, 0.18);
}


.price-card.featured:hover {
    transform: translateY(-17px);
}


.price-card.featured::before {
    background: var(--red);
}


/* =========================================
   POPULAR BADGE
========================================= */

.popular-badge {
    position: absolute;

    top: 16px;
    right: -32px;

    padding: 6px 38px;

    background: var(--red);

    color: white;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .8px;

    text-transform: uppercase;

    transform: rotate(45deg);
}


/* =========================================
   CARD TOP
========================================= */

.price-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 35px;
}


.configuration {
    color: var(--green);

    font-size: 16px;

    font-weight: 700;
}


.price-card.featured .configuration {
    color: var(--cream);
}


.price-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(13, 84, 59, 0.08);

    color: var(--green);

    font-size: 18px;

    transition: .4s;
}


.price-card:hover .price-icon {
    background: var(--red);
    color: white;
}


.price-card.featured .price-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--cream);
}


/* =========================================
   PRICE CONTENT
========================================= */

.price-label {
    display: block;

    margin-bottom: 6px;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.price-card.featured .price-label {
    color: rgba(255, 255, 255, 0.65);
}


.price-content h3 {
    margin: 0;

    color: var(--red);

    font-family: "Cinzel", serif;

    font-size: 34px;

    line-height: 1.1;
}


.price-content h3 span {
    font-size: 17px;
}


.price-card.featured .price-content h3 {
    color: var(--cream);
}


.price-line {
    width: 45px;
    height: 2px;

    margin: 18px 0;

    background: var(--red);
}


.price-content p {
    max-width: 290px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


.price-card.featured .price-content p {
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================
   BUTTON
========================================= */

.price-btn {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: auto;

    padding-top: 18px;

    color: var(--green);

    border-top: 1px solid rgba(13, 84, 59, 0.12);

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;
}


.price-btn i {
    transition: .3s ease;
}


.price-btn:hover {
    color: var(--red);
}


.price-btn:hover i {
    transform: translateX(5px);
}


.price-card.featured .price-btn {
    color: var(--cream);

    border-color: rgba(255, 255, 255, 0.15);
}


.price-card.featured .price-btn:hover {
    color: #fff;
}


/* =========================================
   PRICE NOTE
========================================= */

.price-note {
    max-width: 1150px;

    margin: 25px auto 0;

    text-align: center;

    color: #89918c;

    font-size: 10px;
}


/* =========================================
   AMENITIES SECTION
========================================= */

.amenities-section {
    padding: 60px 7%;
    background: var(--cream-light);
}


/* =========================================
   SECTION HEADER
========================================= */

.amenities-section .section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.amenities-section .section-tag {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.amenities-section .section-header h2 {
    margin: 15px 0;
    color: var(--green);
    font-family: "Cinzel", serif;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 1.15;
}

.amenities-section .section-header h2 span {
    color: var(--red);
}

.amenities-section .section-header p {
    max-width: 650px;
    margin: auto;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   AMENITIES GRID
========================================= */

.amenities-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================
   AMENITY CARD
========================================= */

.amenity-card {
    position: relative;

    background: #fff;

    border: 1px solid rgba(13, 84, 59, 0.10);

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(13, 84, 59, 0.06);

    transition: .45s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);

    border-color: rgba(181, 32, 39, .25);

    box-shadow: 0 22px 45px rgba(13, 84, 59, .13);
}


/* =========================================
   IMAGE
========================================= */

.amenity-image {
    width: 100%;
    height: 185px;

    overflow: hidden;

    background: var(--cream);
}

.amenity-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.08);
}


/* =========================================
   CARD CONTENT
========================================= */

.amenity-content {
    position: relative;

    padding: 22px 22px 24px;
}


.amenity-number {
    display: block;

    margin-bottom: 7px;

    color: var(--red);

    font-family: "Cinzel", serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.amenity-content h3 {
    margin: 0 0 9px;

    color: var(--green);

    font-family: "Playfair Display", serif;

    font-size: 19px;

    line-height: 1.25;
}


.amenity-content p {
    min-height: 48px;

    margin: 0 0 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================
   EXPLORE LINK
========================================= */

.amenity-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;

    transition: .3s ease;
}

.amenity-link i {
    font-size: 10px;

    transition: .3s ease;
}

.amenity-link:hover {
    color: var(--red);
}

.amenity-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.amenities-bottom {
    max-width: 1200px;

    margin: 45px auto 0;

    padding-top: 25px;

    border-top: 1px solid rgba(13, 84, 59, .12);

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.amenities-bottom span {
    color: var(--green);

    font-family: "Cinzel", serif;

    font-size: 15px;

    font-weight: 600;
}

.amenities-bottom a {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--red);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.amenities-bottom a i {
    transition: .3s ease;
}

.amenities-bottom a:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 850px) {

    .amenities-section {
        padding: 80px 5%;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .amenities-section {
        padding: 65px 20px;
    }

    .amenities-section .section-header {
        margin-bottom: 35px;
    }

    .amenities-section .section-header h2 {
        font-size: 2.2rem;
    }

    .amenities-section .section-header p {
        font-size: 12px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .amenity-image {
        height: 200px;
    }

    .amenity-content {
        padding: 20px;
    }

    .amenity-content h3 {
        font-size: 18px;
    }

    .amenity-content p {
        min-height: auto;
    }

    .amenities-bottom {
        margin-top: 30px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}


/* =========================================
   GALLERY WRAPPER
========================================= */

.gallery-wrapper {
    position: relative;

    width: 100%;
    max-width: 1450px;

    height: 500px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}


/* =========================================
   GALLERY CARD
========================================= */

.gallery-card {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 230px;
    height: 350px;

    overflow: hidden;

    border-radius: 16px;

    background: var(--card-bg);

    box-shadow:
        0 20px 45px rgba(0,0,0,.22);

    cursor: pointer;

    transform-origin: center center;

    transition:
        transform .55s ease,
        opacity .55s ease,
        filter .55s ease;

    will-change: transform, opacity;
}


/* =========================================
   VIDEO
========================================= */

.gallery-card video {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    background: #000;

    transition: transform .6s ease;
}

.gallery-card:hover video {
    transform: scale(1.05);
}


/* =========================================
   CENTER
========================================= */

.gallery-card.center {

    z-index: 7;

    opacity: 1;

    filter: none;

    transform:
        translate(-50%, -50%)
        scale(1.15);
}


/* =========================================
   LEFT
========================================= */

.gallery-card.left {

    z-index: 6;

    opacity: .95;

    transform:
        translate(
            calc(-50% - 245px),
            calc(-50% + 5px)
        )
        scale(.90);
}


/* =========================================
   RIGHT
========================================= */

.gallery-card.right {

    z-index: 6;

    opacity: .95;

    transform:
        translate(
            calc(-50% + 245px),
            calc(-50% + 5px)
        )
        scale(.90);
}


/* =========================================
   FAR LEFT
========================================= */

.gallery-card.far-left {

    z-index: 4;

    opacity: .78;

    transform:
        translate(
            calc(-50% - 445px),
            calc(-50% + 15px)
        )
        scale(.78);
}


/* =========================================
   FAR RIGHT
========================================= */

.gallery-card.far-right {

    z-index: 4;

    opacity: .78;

    transform:
        translate(
            calc(-50% + 445px),
            calc(-50% + 15px)
        )
        scale(.78);
}


/* =========================================
   FAR FAR LEFT
========================================= */

.gallery-card.far-far-left {

    z-index: 2;

    opacity: .55;

    transform:
        translate(
            calc(-50% - 620px),
            calc(-50% + 25px)
        )
        scale(.65);

    filter: brightness(.75);
}


/* =========================================
   FAR FAR RIGHT
========================================= */

.gallery-card.far-far-right {

    z-index: 2;

    opacity: .55;

    transform:
        translate(
            calc(-50% + 620px),
            calc(-50% + 25px)
        )
        scale(.65);

    filter: brightness(.75);
}


/* =========================================
   SOUND BUTTON
========================================= */

.video-sound {

    position: absolute;

    right: 14px;
    bottom: 14px;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 50%;

    background: rgba(13,84,59,.9);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 20;

    transition: .3s ease;
}

.video-sound:hover {

    background: var(--red);

    transform: scale(1.08);
}

.video-sound.unmuted {

    background: var(--red);

}

.gallery-section {
    position: relative;
    padding: 100px 7%;
    overflow: hidden;

    background: var(--cream-dark);
}


/* =========================================
   SUBTLE BACKGROUND DESIGN
========================================= */

.gallery-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -150px;

    border: 1px solid rgba(13, 84, 59, 0.08);
    border-radius: 50%;

    pointer-events: none;
}

.gallery-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -150px;
    left: -120px;

    border: 1px solid rgba(181, 32, 39, 0.07);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   GALLERY HEADING
========================================= */

.gallery-heading {
    position: relative;
    z-index: 2;

    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}

.gallery-heading span {
    display: inline-block;

    color: var(--red);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.gallery-heading h2 {
    margin: 14px 0 0;

    color: var(--green);

    font-family: "Cinzel", serif;

    font-size: clamp(2.3rem, 4vw, 3.8rem);

    font-weight: 600;

    line-height: 1.15;
}

.gallery-heading h2::after {
    content: "";

    display: block;

    width: 50px;
    height: 2px;

    margin: 18px auto 0;

    background: var(--red);
}


/* =========================================
   GALLERY CONTAINER
========================================= */

.gallery-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================
   GOLD / RED EDGE ON CENTER IMAGE
========================================= */

.gallery-card.center::after {
    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(181, 32, 39, .45);

    pointer-events: none;
}


/* =========================================
   CONTROLS
========================================= */

.gallery-controls {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 5px;
}


/* =========================================
   ARROWS
========================================= */

.gallery-arrow {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid var(--green);

    background: transparent;

    color: var(--green);

    font-size: 18px;

    line-height: 1;

    cursor: pointer;

    transition: .35s ease;
}


.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: var(--green);

    color: var(--cream-light);

    border-color: var(--green);

    outline: none;

    transform: translateY(-2px);
}


.gallery-arrow:active {
    transform: scale(.94);
}


.gallery-arrow:disabled {
    opacity: .35;

    cursor: not-allowed;

    transform: none;
}


/* =========================================
   SMALL RED DOT BETWEEN ARROWS
========================================= */

.gallery-controls::before {
    content: "";

    width: 5px;
    height: 5px;

    position: absolute;

    background: var(--red);

    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .gallery-section {
        padding: 85px 5%;
    }

    .gallery-wrapper {
        min-height: 450px;
    }

    .gallery-card.center {
        width: 285px;
        height: 395px;
    }

    .gallery-card.left,
    .gallery-card.right {
        width: 255px;
        height: 340px;
    }

    .gallery-card.left {
        transform:
            translate(calc(-50% - 200px), calc(-50% + 15px))
            scale(.9);
    }

    .gallery-card.right {
        transform:
            translate(calc(-50% + 200px), calc(-50% + 15px))
            scale(.9);
    }

    .gallery-card.far-left,
    .gallery-card.far-right {
        display: none;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding: 65px 20px;
    }

    .gallery-heading {
        margin-bottom: 25px;
    }

    .gallery-heading span {
        font-size: 10px;

        letter-spacing: 2.5px;
    }

    .gallery-heading h2 {
        font-size: 2.2rem;
    }

    .gallery-heading h2::after {
        margin-top: 14px;
    }


    .gallery-wrapper {
        min-height: 400px;

        padding: 15px 0 35px;
    }


    /* CENTER */

    .gallery-card.center {
        width: 245px;
        height: 345px;

        transform:
            translate(-50%, -50%)
            scale(1);
    }


    /* SIDE CARDS */

    .gallery-card.left,
    .gallery-card.right {
        width: 205px;
        height: 290px;

        opacity: .65;
    }


    .gallery-card.left {
        transform:
            translate(calc(-50% - 105px), calc(-50% + 20px))
            scale(.78);
    }

    .gallery-card.right {
        transform:
            translate(calc(-50% + 105px), calc(-50% + 20px))
            scale(.78);
    }


    /* HIDE FAR CARDS */

    .gallery-card.far-left,
    .gallery-card.far-right {
        display: none;
    }


    /* ARROWS */

    .gallery-arrow {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .gallery-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .gallery-card.center {
        width: 220px;
        height: 320px;
    }

    .gallery-card.left,
    .gallery-card.right {
        width: 190px;
        height: 275px;
    }

    .gallery-card.left {
        transform:
            translate(calc(-50% - 90px), calc(-50% + 20px))
            scale(.72);
    }

    .gallery-card.right {
        transform:
            translate(calc(-50% + 90px), calc(-50% + 20px))
            scale(.72);
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .gallery-card,
    .gallery-card img,
    .gallery-arrow {
        transition: none;
    }
}
