/* =========================================================
   ROOT / COLOURS
========================================================= */

:root {

    --green: #063d32;
    --green-dark: #032d25;
    --green-light: #0b4b3e;

    --gold: #c69a4b;
    --gold-light: #dfbc73;

    --cream: #f5f0e8;
    --cream-dark: #ebe3d7;

    --white: #ffffff;
    --black: #171717;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    --script: "Parisienne", cursive;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================================================
   GENERAL
========================================================= */

section {
    position: relative;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .5px;
}

.heading-line {
    width: 52px;
    height: 1px;
    background: var(--gold);
}

.light-heading {
    color: var(--white);
}

.gold-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 15px;
}

.gold-divider span {
    width: 135px;
    height: 1px;
    background: var(--gold);
}

.gold-divider b {
    color: var(--gold);
    font-size: 20px;
    font-weight: 400;
}

.gold-button,
.outline-button,
.green-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 45px;
    padding: 0 22px;

    border: 1px solid var(--gold);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;

    transition: .3s ease;
}

.gold-button {
    background: var(--gold);
    color: #fff;
}

.gold-button:hover {
    background: transparent;
    color: var(--gold-light);
}

.outline-button {
    background: transparent;
    color: var(--gold-light);
}

.outline-button:hover {
    background: var(--gold);
    color: white;
}

.green-button {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

.green-button:hover {
    background: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 358px;
    height: 100vh;
    min-height: 600px;

    position: relative;

    background-image:
        url("cover.png");

    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .76) 0%,
            rgba(0, 0, 0, .46) 45%,
            rgba(0, 0, 0, .20) 100%
        );
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    z-index: 10;

    height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 3%;
}



.logo {
    display: block;
    width: 170px;
    height: 50%;
    max-height: 72px;
    object-fit: contain;
}

.logo-image {
    display: block;
    width: 170px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

.logo-am {
    font-family: var(--script);
    color: var(--gold-light);
    font-size: 43px;
    line-height: .8;
    letter-spacing: -4px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    color: white;

    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: 3px;

    line-height: 1.3;
}

.logo-text small {
    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: 4px;
    text-align: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu > a:not(.nav-button) {
    position: relative;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: .4px;

    color: white;
}

.nav-menu > a:not(.nav-button)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .3s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

.nav-button {
    border: 1px solid var(--gold);
    color: var(--gold-light);

    padding: 10px 18px;

    font-size: 12px;
    letter-spacing: 1px;

    margin-left: 8px;

    transition: .3s;
}

.nav-button:hover {
    background: var(--gold);
    color: white;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    height: calc(100% - 85px);

    display: flex;
    align-items: center;

    padding-left: 13%;
}

.hero-inner {
    max-width: 620px;
}

.hero-eyebrow {
    display: none;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(50px, 5vw, 76px);
    font-weight: 400;
    line-height: .86;

    margin-bottom: 12px;
}

.hero-description {
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 1px;
    font-weight: 500;

    margin-bottom: 17px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
}

/* ================================
   MOBILE NAVIGATION
================================ */

@media (max-width: 768px) {

    .mobile-menu,
    .nav-menu,
    .mobile-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;

        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;

        margin: 0 !important;
        padding: 90px 0 40px 0 !important;

        background: #003f36 !important;

        z-index: 9998 !important;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        box-sizing: border-box;
        overflow-y: auto;
    }


    /* MENU LINKS */

    .mobile-menu a,
    .nav-menu a,
    .mobile-nav a {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        padding: 14px 20px !important;

        box-sizing: border-box;

        text-align: center;

        color: #ffffff !important;
        text-decoration: none;

        font-size: 13px;
        font-weight: 600;

        letter-spacing: 0.5px;

        background: transparent;
    }


    /* ACTIVE / HOVER */

    .mobile-menu a:hover,
    .mobile-menu a.active,
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #d4af37 !important;
    }


    /* HAMBURGER / CLOSE BUTTON */

    .menu-toggle {
        position: fixed !important;

        top: 20px !important;
        right: 20px !important;

        z-index: 10000 !important;
    }

}



/* =========================================================
   ABOUT
========================================================= */

.about-section {
    min-height: 235px;

    display: grid;
    grid-template-columns: 25% 65%;

    background: var(--cream);

    overflow: hidden;
}

.about-image {
    height: 100%;
    min-height: 235px;
}

.about-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    position: relative;
    padding: 50px 10% 20px 5%;
}

.section-label {
    color: #9b7130;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 1.8px;
}

.about-content h2 {
    font-family: var(--serif);
    font-size: 37px;
    line-height: 1.25;
    font-weight: 500;

    margin: 4px 0 9px;
}

.small-gold-line {
    width: 28px;
    height: 1px;
    background: var(--gold);

    margin-bottom: 9px;
}

.about-content p {
    max-width: 1000px;

    font-size: 16px;
    line-height: 1.45;

    margin-bottom: 8px;
}

.signature {
    font-family: var(--script);
    color: var(--gold);

    font-size: 28px;

    margin-top: 4px;
}

.floral-decoration {
    position: absolute;
    right: -10px;
    bottom: -60px;

    font-size: 180px;

    color: rgba(198, 154, 75, .11);

    transform: rotate(-25deg);
}


/* =========================================================
   WHY
========================================================= */

.why-section {
    background: var(--green);

    color: white;

    padding: 30px 8% 30px;
}

.why-section .section-heading {
    margin-bottom: 16px;
}

.why-section .section-heading h2 {
    font-size: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.why-item {
    text-align: center;

    min-height: 78px;

    padding: 2px 10px;

    border-right: 1px solid rgba(198, 154, 75, .65);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-item:last-child {
    border-right: 0;
}

.why-icon {
    font-family: var(--sans);

    color: var(--gold-light);

    font-size: 30px;

    height: 32px;

    display: flex;
    align-items: center;
}

.why-item h3 {
    font-size: 16px;
    letter-spacing: 1px;

    margin: 10px 0;
}

.why-item p {
    font-size: 12px;
    line-height: 1.25;

    opacity: .9;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--cream);

    padding: 12px 7% 60px;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.service-card {
    background: #eee7dd;

    text-align: center;

    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.service-image {
    height: 90px;
    overflow: hidden;
}

.service-image img {
    height: 100%;
    object-fit: cover;

    transition: transform .5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 7px 8px 8px;
}

.service-content h3 {
  /*  font-family: var(--serif);*/

    font-size: 17px;
    font-weight: 500;

    margin-bottom: 1px;
}

.service-content p {
    min-height: 30px;

    font-size: 12px;
    line-height: 1.3;

    margin-bottom: 4px;
}

.service-content a {
    color: var(--gold);

    font-size: 12px;
    letter-spacing: 1px;
}


/* =========================================================
   JOURNEY
========================================================= */

.journey-section {
    background:
        linear-gradient(rgba(245,240,232,.94), rgba(245,240,232,.94)),
        url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;

    min-height: 100px;

    display: flex;
    align-items: center;

    padding: 25px 7%;
}

.journey-title {
    width: 29%;
}

.journey-title h2 {
    font-family: var(--serif);

    font-size: 25px;
    font-weight: 500;
}

.journey-title p {
    font-family: var(--sans);

    font-size: 14px;
    font-style: italic;

    margin-bottom: 8px;
}

.journey-title .green-button {
    font-size: 12px;
    min-height: 25px;
    padding: 0 15px;
}

.journey-steps {
    position: relative;

    flex: 1;

    display: flex;
    justify-content: space-between;

    padding-left: 35px;
}

.journey-line {
    position: absolute;

    left: 50px;
    right: 30px;
    top: 21px;

    height: 1px;

    background: var(--gold);
}

.journey-step {
    position: relative;
    z-index: 2;

    width: 90px;

    text-align: center;
}

.journey-step span {
    display: flex;

    width: 34px;
    height: 34px;

    margin: 0 auto 5px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green);

    border: 1px solid var(--gold);

    color: white;

    font-family: var(--sans);

    font-size: 17px;
}

.journey-step h3 {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    background: var(--cream);

    height: 120px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    height: 100%;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-right: 2px solid var(--cream);
}

.gallery-item img {
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-featured::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.15);
}

.gallery-button {
    position: absolute;

    z-index: 3;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    white-space: nowrap;

    padding: 10px 18px;

    border: 1px solid var(--gold);

    background: rgba(0,0,0,.35);

    color: white;

    font-size: 12px;
    letter-spacing: 1px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {
    min-height: 300px;

    background: var(--cream);

    display: flex;
    align-items: center;

    padding: 50px 9%;
}

.testimonial-content {
    flex: 1;

    text-align: center;

    position: relative;
}

.quote-mark {
    position: absolute;

    left: 8%;

    top: -13px;

    color: var(--gold);

    font-family: Georgia, serif;

    font-size: 50px;
}

.testimonial {
    display: none;

    max-width: 680px;

    margin: auto;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-family: var(--serif);

    font-size: 20px;
    font-style: italic;

    line-height: 1.3;
}

.testimonial span {
    display: block;

    font-family: var(--sans);

    font-size: 12px;
    letter-spacing: 2px;

    margin-top: 5px;
}

.testimonial-dots {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 6px;
}

.dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    border: 0;

    background: #d6cec2;
}

.dot.active {
    background: var(--gold);
}

.testimonial-arrow {
    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: transparent;

    border: 1px solid var(--gold);

    color: var(--green);

    font-size: 20px;

    line-height: 20px;

    cursor: pointer;
}


/* =========================================================
   PARTNERS
========================================================= */

.partners-section {
    background: var(--cream);

    padding: 8px 3% 18px;
}

.partners-section .section-heading {
    margin-bottom: 12px;
}

.partners-section .section-heading h2 {
    font-size: 15px;
    letter-spacing: 2px;
}

.partners-grid {
    display: grid;

    grid-template-columns: repeat(8, 1fr);

    align-items: center;

    gap: 0px;
}

.partner {
    text-align: center;

    font-family: var(--serif);

    font-size: 15px;

    letter-spacing: 1px;

    color: #272727;
}

.partner.large {
    font-size: 20px;
}

.partner strong {
    color: var(--gold);

    font-size: 25px;
}

.partner i {
    font-family: var(--sans);

    font-size: 20px;
}

.partner small {
    display: block;

    font-family: var(--sans);

    font-size: 6px;

    letter-spacing: 2px;

    margin-top: 1px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    min-height: 90px;

    background: var(--green-dark);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 80px;

    overflow: hidden;
}

.cta-content {
    text-align: left;
}

.cta-content h2 {
    font-family: var(--serif);

    font-size: 27px;
    font-weight: 400;

    margin-bottom: 2px;
}

.cta-content p {
    font-size: 12px;
}

.cta-section .gold-button {
    min-width: 175px;
}

.cta-floral {
    position: absolute;

    left: -20px;
    bottom: -100px;

    font-size: 200px;

    color: rgba(198,154,75,.12);

    transform: rotate(-25deg);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--green-dark);

    color: white;

    padding: 12px 4% 5px;
}

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.4fr 1.3fr;

    gap: 20px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(198,154,75,.6);
}

.footer-brand {
    max-width: 190px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 8px;

    color: white;

    font-family: var(--serif);

    font-size: 12px;

    letter-spacing: 1.5px;
}

.footer-logo > span {
        font-family: var(--script);

    color: var(--gold-light);

    font-size: 37px;

    letter-spacing: -4px;
}

.footer-logo small {
    display: block;

    text-align: center;

    font-size: 6px;

    letter-spacing: 3px;
}

.footer-logo-image {
    width:auto;
    max-height:50px;
}

.footer-brand p {
    font-size: 10px;
    line-height: 1.35;

    margin: 5px 0;
}

.social-icons {
    display: flex;

    gap: 10px;
}

.social-icons a {
    width: 17px;
    height: 17px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 10px;

    color: var(--gold-light);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.footer-column h3 {
    color: var(--gold-light);

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 3px;
}

.footer-column a,
.footer-column p {
    font-size: 10px;

    color: rgba(255,255,255,.85);

    line-height: 1.4;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.contact-column p {
    margin-bottom: 1px;
}

.footer-gallery {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 3px;

    max-width: 170px;
}

.footer-gallery img {
    height: 35px;

    object-fit: cover;
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 6px;

    font-size: 6px;

    color: rgba(255,255,255,.65);
}

.footer-bottom div {
    display: flex;

    gap: 20px;
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.service-card,
.why-item,
.about-content,
.journey-step {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 13px;
    }

    .hero-content {
        padding-left: 8%;
    }

    .hero h1 {
        font-size: 58px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 20px;
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-gallery {
        display: none;
    }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    background:
        linear-gradient(
            rgba(245, 240, 232, .96),
            rgba(245, 240, 232, .96)
        ),
        url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80");

    background-size: cover;
    background-position: center;

    padding: 55px 8% 65px;

    overflow: hidden;
}


/* Heading */

.contact-heading {
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 650px;

    margin: 0 auto 35px;
}

.contact-heading h2 {
    font-family: var(--serif);

    font-size: clamp(38px, 4vw, 54px);

    font-weight: 500;

    line-height: .95;

    margin: 7px 0;
}

.contact-heading .gold-divider {
    justify-content: center;

    margin: 13px auto;
}

.contact-heading p {
    max-width: 550px;

    margin: auto;

    font-size: 12px;

    line-height: 1.7;

    color: #555;
}


/* Decorative flowers */

.contact-floral {
    position: absolute;

    font-size: 250px;

    color: rgba(198, 154, 75, .08);

    pointer-events: none;
}

.contact-floral-left {
    left: -100px;
    bottom: -120px;

    transform: rotate(-30deg);
}

.contact-floral-right {
    right: -100px;
    top: 30px;

    transform: rotate(145deg);
}


/* Main layout */

.contact-wrapper {
    position: relative;
    z-index: 2;

    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 34% 66%;

    background: rgba(255,255,255,.62);

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

    border: 1px solid rgba(198,154,75,.25);
}


/* Information panel */

.contact-information {
    background: var(--green);

    color: white;

    padding: 42px 35px;
}

.contact-information h3 {
    font-family: var(--serif);

    font-size: 29px;

    font-weight: 400;

    line-height: 1.05;

    margin-bottom: 18px;
}

.contact-intro {
    color: rgba(255,255,255,.78);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* Contact details */

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}

.contact-icon {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    color: var(--gold-light);

    font-size: 12px;
}

.contact-detail small {
    display: block;

    color: var(--gold-light);

    font-size: 12px;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}

.contact-detail p {
    font-size: 12px;

    line-height: 1.4;

    color: rgba(255,255,255,.9);
}


/* Social icons */

.contact-social {
    display: flex;

    gap: 9px;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid rgba(198,154,75,.35);
}

.contact-social a {
    width: 28px;
    height: 28px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold-light);

    font-size: 12px;

    transition: .3s ease;
}

.contact-social a:hover {
    background: var(--gold);

    color: white;

    transform: translateY(-2px);
}


/* Form */

.contact-form-container {
    padding: 38px 40px;

    background: rgba(255,255,255,.78);
}

#contactForm {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    color: var(--green);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #d8d0c5;

    background: rgba(255,255,255,.8);

    padding: 11px 13px;

    color: #333;

    font-family: var(--sans);

    font-size: 12px;

    outline: none;

    border-radius: 0;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.form-group input,
.form-group select {
    height: 39px;
}

.form-group textarea {
    resize: vertical;

    min-height: 105px;

    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: white;

    box-shadow:
        0 0 0 2px rgba(198,154,75,.08);
}


/* Error */

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #b44;
}

.field-error {
    display: none;

    color: #a33;

    font-size: 10px;

    margin-top: 4px;
}

.form-group.error .field-error {
    display: block;
}


/* Honeypot */

.honeypot {
    position: absolute !important;

    left: -9999px !important;

    opacity: 0 !important;

    height: 0 !important;

    overflow: hidden !important;
}


/* Form footer */

.form-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 5px;
}

.form-footer p {
    max-width: 330px;

    font-size: 10px;

    line-height: 1.5;

    color: #777;
}

.submit-button {
    min-width: 155px;

    cursor: pointer;

    position: relative;
}

.submit-button:disabled {
    cursor: wait;

    opacity: .75;
}


/* Loader */

.button-loader {
    display: none;

    width: 14px;
    height: 14px;

    border: 2px solid rgba(255,255,255,.4);

    border-top-color: white;

    border-radius: 50%;

    animation: formSpin .7s linear infinite;
}

.submit-button.loading .button-text {
    display: none;
}

.submit-button.loading .button-loader {
    display: block;
}

@keyframes formSpin {
    to {
        transform: rotate(360deg);
    }
}


/* Form response */

.form-message {
    display: none;

    margin-top: 18px;

    padding: 12px 15px;

    font-size: 12px;

    line-height: 1.5;

    border: 1px solid;
}

.form-message.success {
    display: block;

    background: rgba(6,61,50,.08);

    color: var(--green);

    border-color: rgba(6,61,50,.3);
}

.form-message.error {
    display: block;

    background: rgba(160,50,50,.06);

    color: #963b3b;

    border-color: rgba(160,50,50,.3);
}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 850px) {

    .contact-section {
        padding: 45px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-information {
        padding: 35px 28px;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-footer {
        flex-direction: column;

        align-items: stretch;
    }

    .form-footer p {
        max-width: 100%;
    }

    .submit-button {
        width: 100%;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

}


@media (max-width: 760px) {

    /* NAV */

    .navbar {
        height: 70px;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 20;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        right: -100%;

        width: 80%;
        max-width: 330px;

        height: 100vh;

        background: var(--green-dark);

        flex-direction: column;

        align-items: flex-start;

        padding: 100px 40px;

        gap: 25px;

        transition: right .35s ease;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu > a:not(.nav-button) {
        font-size: 11px;
    }

    .nav-button {
        margin-left: 0;
        margin-top: 10px;
    }


    /* HERO */

    .hero {
        min-height: 650px;
        height: 80vh;

        background-position: 60% center;
    }

    .hero-content {
        padding: 0 25px;

        align-items: center;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-description {
        font-size: 12px;
    }

    .gold-divider span {
        width: 80px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    /* ABOUT */

    .about-section {
        display: flex;
        flex-direction: column;
    }

    .about-image {
        height: 300px;
    }

    .about-content {
        padding: 35px 25px;
    }

    .about-content h2 {
        font-size: 31px;
    }


    /* WHY */

    .why-section {
        padding: 20px 15px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item {
        margin-bottom: 20px;
    }

    .why-item:nth-child(2) {
        border-right: 0;
    }


    /* SERVICES */

    .services-section {
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 180px;
    }


    /* JOURNEY */

    .journey-section {
        display: block;

        padding: 35px 20px;
    }

    .journey-title {
        width: 100%;

        text-align: center;

        margin-bottom: 30px;
    }

    .journey-steps {
        padding: 0;

        flex-direction: column;

        gap: 25px;
    }

    .journey-line {
        left: 17px;

        top: 17px;

        width: 1px;

        height: calc(100% - 34px);

        right: auto;
    }

    .journey-step {
        display: flex;

        align-items: center;

        width: 100%;

        text-align: left;
    }

    .journey-step span {
        flex-shrink: 0;

        margin: 0 20px 0 0;
    }


    /* GALLERY */

    .gallery-section {
        height: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);

        height: 350px;
    }

    .gallery-item:nth-child(5) {
        display: none;
    }


    /* TESTIMONIAL */

    .testimonial-section {
        padding: 25px 15px;
    }

    .quote-mark {
        left: 0;
    }

    .testimonial p {
        font-size: 17px;

        padding: 0 20px;
    }


    /* PARTNERS */

    .partners-section {
        padding: 30px 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CTA */

    .cta-section {
        flex-direction: column;

        gap: 15px;

        padding: 35px 20px;

        text-align: center;
    }

    .cta-content {
        text-align: center;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

}


@media (max-width: 480px) {

    .hero {
        min-height: 6;
    }

    .logo-text {
        font-size: 12px;
    }

    .logo-am {
        font-size: 36px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description br {
        display: none;
    }

    .gallery-grid {
        height: 280px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        max-width: 100%;
    }

}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 100px);
    background: #344727;
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.contact-toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 100px);

    background: #344727;
    color: #ffffff;

    padding: 16px 30px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 500;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;

    z-index: 999999;

    pointer-events: none;
}

.contact-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.contact-toast.error {
    background: #9b3d35;
}


/* =========================================================
   VENUES & PARTNERS
========================================================= */

.partners-section {
    padding: 100px 8%;
    background: var(--cream);
    text-align: center;
}

.partners-grid {
    width: 100%;
    max-width: 1200px;
    margin: 65px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    justify-content: center;

    gap: 0;
}

/* Individual Venue */
.partner {
    min-height: 180px;
    padding: 45px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 3px;

    color: var(--green);

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* Elegant vertical dividers */
.partner:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 20%;
    right: 0;

    width: 1px;
    height: 60%;

    background: rgba(52, 71, 39, 0.25);
}

/* Property subtitle */
.partner small {
    display: block;

    margin-top: 12px;

    font-family: var(--body);
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: var(--gold);
}

/* Premium hover effect */
.partner:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.45);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Gold accent line */
.partner::before {
    content: "";

    position: absolute;

    bottom: 28px;
    left: 50%;

    width: 0;
    height: 1px;

    background: var(--gold);

    transform: translateX(-50%);

    transition: width 0.35s ease;
}

.partner:hover::before {
    width: 45px;
}


/* =========================================================
   VENUE-SPECIFIC TYPOGRAPHY
========================================================= */

/* DeDazzle */
.partner:nth-child(1) {
    font-family: var(--serif);
    letter-spacing: 5px;
}

/* Morgensvlei */
.partner:nth-child(2) {
     font-family: var(--serif);
    letter-spacing: 5px;
}

/* Muldersvlei */
.partner:nth-child(3) {
    font-family: var(--serif);
    font-size: 27px;
    letter-spacing: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .partners-section {
        padding: 80px 6%;
    }

    .partners-grid {
        margin-top: 50px;
    }

    .partner {
        min-height: 160px;
        padding: 35px 20px;
        font-size: 21px;
    }

    .partner:nth-child(2) {
        font-size: 32px;
    }

    .partner:nth-child(3) {
        font-size: 23px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .partners-section {
        padding: 70px 8%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 40px;
    }

    .partner {
        min-height: 145px;
        padding: 35px 20px;
    }

    /* Horizontal dividers on mobile */
    .partner:not(:last-child)::after {
        top: auto;
        right: 15%;

        bottom: 0;

        width: 70%;
        height: 1px;

        background: rgba(52, 71, 39, 0.2);
    }

    .partner::before {
        bottom: 18px;
    }

    .partner:nth-child(1) {
        font-size: 22px;
    }

    .partner:nth-child(2) {
        font-size: 22px;
    }

    .partner:nth-child(3) {
        font-size: 24px;
    }

    .partner small {
        font-size: 10px;
        letter-spacing: 3px;
    }
}
.nav-menu{
margin-left: auto;
    margin-right: 2%;
}

.nav-menu {
    position: relative;
    z-index: 10;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3%;
}

@media (max-width: 768px) {

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #003f36;
        z-index: 9999;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding-top: 80px;
        overflow-y: auto;
    }

    .mobile-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .mobile-menu a:hover {
        color: #d4af37;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000;
    }
}

@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
}

/* Mobile */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    z-index: 1001;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

    .navbar {
        height: 75px;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;

        background: #1d3b2a;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 15px 0 25px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 20px;

        text-align: center;

        color: #ffffff;
        text-decoration: none;

        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #d4af37;
    }

    /* Turn hamburger into X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


@media (max-width: 768px) {

    .navbar {
        height: 75px;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-image {
        max-width: 170px;
        height: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #1d3b2a;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 25px 0;
        gap: 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;

        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 16px 20px;

        color: #fff;
        text-decoration: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #d4af37;
    }

    /* Hamburger becomes an X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* =========================================================
   SMALL LATEST JOURNAL
========================================================= */

.latest-journal {
    background: #f8f5ee;
    padding: 45px 5% 50px;
}

.journal-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 25px;
}

.journal-heading .section-label {
    display: block;
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: 2px;
}

.journal-heading h2 {
    margin: 0;
    color: #173c32;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    font-weight: 500;
}

.journal-heading .small-gold-line {
    margin: 10px auto;
}

.journal-heading p {
    margin: 0;
    color: #78817d;
    font-size: 12px;
    line-height: 1.5;
}


/* SLIDER */

.journal-slider-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

.journal-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* CARD */

.journal-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    min-height: 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}


/* IMAGE */

.journal-image {
    width: 42%;
    min-width: 42%;
    height: 175px;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* CONTENT */

.journal-content {
    padding: 17px 18px;
}

.journal-date {
    display: block;
    color: #c5a15a;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.journal-content h3 {
    margin: 0 0 7px;
    color: #173c32;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 600;
}

.journal-content p {
    margin: 0;
    color: #78817d;
    font-size: 11px;
    line-height: 1.5;
}


/* READ ARTICLE */

.journal-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #173c32;
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid #c5a15a;
    padding-bottom: 3px;
}

.journal-read-more span {
    color: #c5a15a;
    font-size: 12px;
}


/* VIEW ALL */

.journal-view-all {
    text-align: center;
    margin-top: 25px;
}

.journal-view-all-link {
    display: inline-block;
    color: #173c32;
    text-decoration: none;
    border: 1px solid #c5a15a;
    padding: 9px 18px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* HIDE ARROWS/DOTS ON DESKTOP */

.journal-arrow,
.journal-dots {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .journal-slider {
        display: block;
        overflow: hidden;
    }

    .journal-card {
        display: none;
        width: 100%;
    }

    .journal-card.active {
        display: flex;
    }

    .journal-image {
        width: 38%;
        min-width: 38%;
        height: 150px;
    }

    .journal-content {
        padding: 14px;
    }

    .journal-content h3 {
        font-size: 20px;
    }

    .journal-content p {
        font-size: 10px;
    }

    .journal-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border: 1px solid #c5a15a;
        background: #173c32;
        color: white;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        z-index: 5;
    }

    .journal-prev {
        left: -5px;
    }

    .journal-next {
        right: -5px;
    }

    .journal-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 15px;
    }

    .journal-dot {
        width: 6px;
        height: 6px;
        padding: 0;
        border: 1px solid #c5a15a;
        background: transparent;
        border-radius: 50%;
    }

    .journal-dot.active {
        background: #c5a15a;
    }

}

/* =========================================================
   PAGE LOAD & SCROLL ANIMATIONS
========================================================= */

/* Initial state for animated elements */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

/* Visible state */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}


/* HERO ANIMATION
--------------------------------------------------------- */

.hero {
    animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* NAVBAR
--------------------------------------------------------- */

.navbar {
    animation: navDown 0.9s ease 0.2s both;
}

@keyframes navDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* HERO CONTENT
--------------------------------------------------------- */

.hero-content {
    animation: heroContent 1.2s ease 0.35s both;
}

@keyframes heroContent {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* HERO BUTTONS
--------------------------------------------------------- */

.hero-buttons {
    animation: heroButtons 1s ease 0.7s both;
}

@keyframes heroButtons {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* IMAGE HOVER
--------------------------------------------------------- */

img {
    transition: transform 0.8s ease;
}

img:hover {
    transform: scale(1.03);
}


/* CARDS
--------------------------------------------------------- */

.service-card,
.testimonial-card,
.gallery-item,
.journal-card {
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.service-card:hover,
.testimonial-card:hover,
.journal-card:hover {
    transform: translateY(-5px);
}


/* GALLERY
--------------------------------------------------------- */

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* REDUCE MOTION FOR USERS WHO REQUEST IT
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}

/* =========================================================
   BLOG PAGE ANIMATIONS
========================================================= */

/* Blog page fades in */

.blog-page {
    animation: blogPageFade 1s ease both;
}

@keyframes blogPageFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Blog heading */

.blog-header {
    animation: blogHeader 1s ease 0.15s both;
}

@keyframes blogHeader {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Blog cards */

.blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        box-shadow 0.4s ease;
}

.blog-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* Stagger blog cards */

.blog-card:nth-child(1) {
    transition-delay: 0.1s;
}

.blog-card:nth-child(2) {
    transition-delay: 0.2s;
}

.blog-card:nth-child(3) {
    transition-delay: 0.3s;
}

.blog-card:nth-child(4) {
    transition-delay: 0.4s;
}

.blog-card:nth-child(5) {
    transition-delay: 0.5s;
}


/* Blog card hover */

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* Blog images */

.blog-card img {
    transition: transform 0.8s ease;
}

.blog-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   INDIVIDUAL BLOG POST
========================================================= */

.blog-post {
    animation: postFade 1s ease both;
}

@keyframes postFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Post image */

.blog-post img {
    animation: postImage 1.2s ease 0.15s both;
}

@keyframes postImage {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Post title */

.blog-post h1 {
    animation: postTitle 0.9s ease 0.25s both;
}

@keyframes postTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Post content */

.blog-post-content {
    animation: postContent 0.9s ease 0.4s both;
}

@keyframes postContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

}

/* =========================================================
   BLOG PAGE ANIMATIONS
========================================================= */

.blog-page {
    animation: blogPageFade 1s ease both;
}

@keyframes blogPageFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blog-header {
    animation: blogHeader 1s ease 0.15s both;
}

@keyframes blogHeader {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        box-shadow 0.4s ease;
}

.blog-card.show {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:nth-child(1) {
    transition-delay: 0.1s;
}

.blog-card:nth-child(2) {
    transition-delay: 0.2s;
}

.blog-card:nth-child(3) {
    transition-delay: 0.3s;
}

.blog-card:nth-child(4) {
    transition-delay: 0.4s;
}

.blog-card:nth-child(5) {
    transition-delay: 0.5s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    transition: transform 0.8s ease;
}

.blog-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   INDIVIDUAL BLOG POST
========================================================= */

.blog-post {
    animation: postFade 1s ease both;
}

@keyframes postFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post img {
    animation: postImage 1.2s ease 0.15s both;
}

@keyframes postImage {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blog-post h1 {
    animation: postTitle 0.9s ease 0.25s both;
}

@keyframes postTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post-content {
    animation: postContent 0.9s ease 0.4s both;
}

@keyframes postContent {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
   THOUGHT OF THE DAY - MOBILE CAROUSEL
========================================================= */

@media screen and (max-width: 800px) {

    .journal-slider-wrapper {
        position: relative;
        width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }

    .journal-slider {
        display: block !important;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .journal-card {
        display: none !important;
        width: 100%;
        box-sizing: border-box;
        min-height: 180px;
        margin: 0;
    }

    .journal-card.active {
        display: flex !important;
    }

    .journal-image {
        width: 38%;
        min-width: 38%;
        height: 150px;
        overflow: hidden;
    }

    .journal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .journal-content {
        display: block !important;
        padding: 14px;
        flex: 1;
    }

    .journal-content h3 {
        font-size: 19px;
        line-height: 1.15;
    }

    .journal-content p {
        font-size: 10px;
        line-height: 1.4;
    }

    .journal-arrow {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        padding: 0;
        border: 1px solid #c5a15a;
        background: #173c32;
        color: #fff;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        z-index: 20;
    }

    .journal-prev {
        left: 0;
    }

    .journal-next {
        right: 0;
    }

    .journal-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 15px;
    }

    .journal-dot {
        display: block !important;
        width: 7px;
        height: 7px;
        min-width: 7px;
        padding: 0;
        border: 1px solid #c5a15a;
        background: transparent;
        border-radius: 50%;
    }

    .journal-dot.active {
        background: #c5a15a;
    }
}




/* =========================================================
   FINAL MOBILE NAV FIX
========================================================= */

@media (max-width: 768px) {

    body.menu-open { overflow: hidden; }

    .navbar {
        position: relative;
        z-index: 10000;
    }

    .mobile-menu-btn {
        position: relative;
        z-index: 10002;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100dvh !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;

        margin: 0 !important;
        padding: 100px 24px 40px !important;

        background: rgba(3, 45, 37, 0.98) !important;
        box-shadow: 0 15px 40px rgba(0,0,0,.18);

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-18px) !important;

        transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .nav-menu a,
    .nav-menu > a:not(.nav-button) {
        width: 100% !important;
        max-width: 420px !important;
        padding: 15px 12px !important;
        text-align: center !important;
        color: #fff !important;
        font-family: var(--sans);
        font-size: 12px !important;
        font-weight: 500 !important;
        letter-spacing: 1.5px !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--gold-light) !important;
    }

    .nav-menu .nav-button { margin: 8px 0 !important; }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* =========================================================
   THOUGHT OF THE DAY - VIEW ALL
========================================================= */

.journal-view-all {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.journal-view-all-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px !important;
    box-sizing: border-box;

    border: 1px solid var(--gold) !important;
    background: transparent;
    color: var(--green) !important;

    font-family: var(--sans);
    font-size: 10px !important;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    text-align: center;

    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.journal-view-all-link:hover {
    background: var(--gold);
    color: #fff !important;
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .journal-view-all { margin-top: 20px; }

    .journal-view-all-link {
        min-height: 40px;
        padding: 0 20px !important;
        font-size: 9px !important;
    }
}

/* ================================
   FLOATING MOBILE NAV BUTTON
   ================================ */

@media (max-width: 768px) {

    .mobile-menu-toggle {
        position: fixed;
        right: 18px;
        bottom: 18px;
        top: auto;

        width: 52px;
        height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        z-index: 9999;

        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.35);

        background: #1f4d3a;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

        cursor: pointer;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 21px;
        height: 2px;
        margin: 3px 0;
        background: #d4af37;
        transition: all 0.3s ease;
    }

    /* Hamburger becomes X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    /* Slight press effect */
    .mobile-menu-toggle:active {
        transform: scale(0.92);
    }
}


