/* =========================================================
   MEETINGS & EVENTS
========================================================= */

.me-container {
    width: min(1380px, 90%);
    margin: auto;
}

.me-eyebrow,
.me-eyebrow-dark {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.me-eyebrow {
    color: #d2ad5c;
}

.me-eyebrow-dark {
    color: #b08c3a;
}


/* =========================================================
   HERO
========================================================= */

.me-hero {
    position: relative;
    height: 78vh;
    min-height: 620px;
    overflow: hidden;
    color: #fff;
}

.me-hero-image,
.me-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.me-hero-image img {
    object-fit: cover;
    animation: meHeroZoom 12s ease forwards;
}

@keyframes meHeroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.me-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6,34,35,.92),
            rgba(6,34,35,.65) 45%,
            rgba(6,34,35,.12)
        );
}

.me-hero-content {
    position: relative;
    z-index: 2;

    width: min(1380px, 90%);
    height: 100%;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.me-hero-content h1 {
    margin: 18px 0;

    max-width: 900px;

    font-size: clamp(50px, 6vw, 88px);
    line-height: .96;
    letter-spacing: -3px;
}

.me-hero-content h1 em {
    color: #d3ae59;
    font-style: normal;
}

.me-hero-content p {
    max-width: 650px;

    color: rgba(255,255,255,.84);

    line-height: 1.8;

    font-size: 16px;

    margin-bottom: 32px;
}

.me-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.me-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 25px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: .3s ease;
}

.me-btn-gold {
    background: #c9a24d;
    color: #092d2e;
}

.me-btn-gold:hover {
    background: #fff;
}

.me-btn-outline {
    border: 1px solid rgba(255,255,255,.6);
    color: #fff;
}

.me-btn-outline:hover {
    background: #fff;
    color: #092d2e;
}

.me-btn-dark {
    background: #092d2e;
    color: #fff;
}

.me-btn-dark:hover {
    background: #c9a24d;
    color: #092d2e;
}

.me-hero-scroll {
    position: absolute;
    z-index: 4;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    font-size: 9px;
    letter-spacing: 2px;
}

.me-hero-scroll i {
    width: 1px;
    height: 40px;

    background: #d3ae59;
}


/* =========================================================
   INTRO
========================================================= */

.me-intro {
    padding: 110px 0;

    background: #f6f2e9;
}

.me-intro .me-container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    align-items: end;
}

.me-intro h2 {
    margin: 15px 0 0;

    color: #092d2e;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
}

.me-intro h2 em {
    color: #b08c3a;
    font-style: normal;
}

.me-intro-copy p {
    color: #5c6869;

    line-height: 1.9;

    margin: 0 0 20px;
}


/* =========================================================
   VENUES
========================================================= */

.me-venues {
    padding: 110px 0;

    background: #fff;
}

.me-heading {
    display: grid;

    grid-template-columns: 1fr .6fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}

.me-heading h2 {
    margin: 15px 0 0;

    color: #092d2e;

    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
}

.me-heading h2 em {
    color: #b08c3a;
    font-style: normal;
}

.me-heading > p {
    color: #657071;

    line-height: 1.8;

    margin: 0;
}

.me-venue-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.me-venue-card {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    color: #fff;

    text-decoration: none;

    background: #092d2e;
}

.me-venue-large {
    grid-row: span 2;

    min-height: 650px;
}

.me-venue-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.me-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,30,31,.95),
            rgba(5,30,31,.12) 65%
        );
}

.me-card-content {
    position: absolute;
    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 32px;
}

.me-card-content > span {
    color: #d2ad5c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.me-card-content h3 {
    margin: 10px 0 12px;

    font-size: 30px;
    line-height: 1.05;
}

.me-card-content h3 small {
    display: block;

    margin-top: 4px;

    font-size: 17px;

    font-weight: 400;
}

.me-card-content p {
    max-width: 400px;

    margin: 0 0 18px;

    color: rgba(255,255,255,.75);

    font-size: 12px;
    line-height: 1.7;
}

.me-card-content strong {
    color: #fff;

    font-size: 10px;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.me-venue-card:hover img {
    transform: scale(1.08);
}

.me-venue-card:hover .me-card-content strong {
    color: #d2ad5c;
}


/* =========================================================
   WHY BEACHFRONT
========================================================= */

.me-why {
    padding: 120px 0;

    background: #092d2e;

    color: #fff;
}

.me-why-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.me-why-image {
    height: 700px;

    overflow: hidden;
}

.me-why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}

.me-why-image:hover img {
    transform: scale(1.04);
}

.me-why-content h2 {
    margin: 15px 0 20px;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;
}

.me-why-content h2 em {
    color: #d2ad5c;

    font-style: normal;
}

.me-why-content > p {
    max-width: 650px;

    color: rgba(255,255,255,.72);

    line-height: 1.8;
}

.me-benefits {
    margin-top: 40px;
}

.me-benefit {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.14);
}

.me-benefit > span {
    color: #d2ad5c;

    font-size: 11px;
    font-weight: 700;
}

.me-benefit h3 {
    margin: 0 0 6px;

    font-size: 16px;
}

.me-benefit p {
    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   EVENTS
========================================================= */

.me-events {
    padding: 110px 0;

    background: #f6f2e9;
}

.me-event-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(9,45,46,.15);
}

.me-event-item {
    min-height: 280px;

    padding: 35px;

    border-right: 1px solid rgba(9,45,46,.15);
    border-bottom: 1px solid rgba(9,45,46,.15);

    text-decoration: none;

    color: #092d2e;

    transition: .35s ease;
}

.me-event-item:nth-child(3n) {
    border-right: 0;
}

.me-event-number {
    color: #b08c3a;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.me-event-item h3 {
    margin: 55px 0 10px;

    font-size: 28px;
}

.me-event-item p {
    max-width: 280px;

    margin-bottom: 25px;

    color: #697273;

    font-size: 12px;

    line-height: 1.7;
}

.me-event-item > span {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.me-event-item:hover {
    background: #092d2e;

    color: #fff;
}

.me-event-item:hover p {
    color: rgba(255,255,255,.65);
}

.me-event-item:hover .me-event-number {
    color: #d2ad5c;
}


/* =========================================================
   GALLERY
========================================================= */

.me-gallery-section {
    padding: 110px 0;

    background: #fff;
}

.me-gallery-heading {
    display: grid;

    grid-template-columns: 1fr .6fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 45px;
}

.me-gallery-heading h2 {
    margin: 15px 0 0;

    color: #092d2e;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;
}

.me-gallery-heading h2 em {
    color: #b08c3a;

    font-style: normal;
}

.me-gallery-heading p {
    margin: 0;

    color: #657071;

    line-height: 1.8;
}

.me-gallery {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    grid-template-rows: 300px 300px;

    gap: 15px;
}

.me-gallery-item {
    position: relative;

    overflow: hidden;

    background: #092d2e;
}

.me-gallery-big {
    grid-row: span 2;
}

.me-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.me-gallery-item::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,30,31,.8),
            transparent 65%
        );
}

.me-gallery-item > div {
    position: absolute;
    z-index: 2;

    left: 25px;
    bottom: 22px;

    color: #fff;
}

.me-gallery-item span {
    color: #d2ad5c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.me-gallery-item h3 {
    margin: 6px 0 0;

    font-size: 20px;
}

.me-gallery-item:hover img {
    transform: scale(1.07);
}

.me-gallery-button {
    margin-top: 35px;

    text-align: center;
}


/* =========================================================
   QUOTE
========================================================= */

.me-quote {
    padding: 120px 0;

    background: #f6f2e9;
}

.me-quote-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

    align-items: center;
}

.me-quote-content h2 {
    margin: 15px 0 20px;

    color: #092d2e;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;
}

.me-quote-content h2 em {
    color: #b08c3a;

    font-style: normal;
}

.me-quote-content > p {
    color: #5f6a6b;

    line-height: 1.8;
}

.me-quote-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}

.me-quote-points span {
    color: #092d2e;

    font-size: 12px;
}

.me-quote-form {
    padding: 45px;

    background: #fff;

    box-shadow: 0 25px 70px rgba(9,45,46,.09);
}

.me-form-heading span {
    color: #b08c3a;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.me-form-heading h3 {
    margin: 8px 0 30px;

    color: #092d2e;

    font-size: 28px;
}

.me-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-bottom: 14px;
}

.me-quote-form input,
.me-quote-form select,
.me-quote-form textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px;

    border: 1px solid #ddd;

    outline: none;

    background: #fff;

    font-family: inherit;
}

.me-quote-form input:focus,
.me-quote-form select:focus,
.me-quote-form textarea:focus {
    border-color: #b08c3a;
}

.me-quote-form textarea {
    min-height: 140px;

    resize: vertical;

    margin-bottom: 14px;
}

.me-submit {
    width: 100%;

    padding: 17px;

    border: 0;

    background: #092d2e;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .3s ease;
}

.me-submit span {
    margin-left: 10px;

    color: #d2ad5c;
}

.me-submit:hover {
    background: #c9a24d;

    color: #092d2e;
}


/* =========================================================
   FINAL CTA
========================================================= */

.me-final {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(
            rgba(5,30,31,.8),
            rgba(5,30,31,.8)
        ),
        url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=2200&q=90")
        center / cover;
}

.me-final h2 {
    margin: 15px 0 30px;

    font-size: clamp(45px, 5vw, 70px);

    line-height: .98;
}

.me-final h2 em {
    color: #d2ad5c;

    font-style: normal;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1000px) {

    .me-intro .me-container,
    .me-heading,
    .me-gallery-heading,
    .me-why-grid,
    .me-quote-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .me-venue-grid {
        grid-template-columns: 1fr 1fr;
    }

    .me-venue-large {
        grid-row: span 1;
        min-height: 550px;
    }

    .me-event-grid {
        grid-template-columns: 1fr 1fr;
    }

    .me-event-item:nth-child(3n) {
        border-right: 1px solid rgba(9,45,46,.15);
    }

    .me-event-item:nth-child(2n) {
        border-right: 0;
    }

    .me-gallery {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 350px 250px 250px;
    }

    .me-gallery-big {
        grid-column: span 2;
        grid-row: span 1;
    }

    .me-why-image {
        height: 550px;
    }
}


@media(max-width: 650px) {

    .me-hero {
        min-height: 650px;
    }

    .me-hero-content h1 {
        font-size: 47px;

        letter-spacing: -2px;
    }

    .me-hero-buttons {
        flex-direction: column;
    }

    .me-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .me-intro,
    .me-venues,
    .me-why,
    .me-events,
    .me-gallery-section,
    .me-quote {
        padding: 75px 0;
    }

    .me-venue-grid {
        grid-template-columns: 1fr;
    }

    .me-venue-card,
    .me-venue-large {
        min-height: 440px;
    }

    .me-event-grid {
        grid-template-columns: 1fr;
    }

    .me-event-item {
        border-right: 0 !important;
    }

    .me-gallery {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 300px);
    }

    .me-gallery-big {
        grid-column: auto;
    }

    .me-why-image {
        height: 420px;
    }

    .me-quote-points {
        grid-template-columns: 1fr;
    }

    .me-quote-form {
        padding: 25px 20px;
    }

    .me-form-row {
        grid-template-columns: 1fr;
    }

}


.me-guest-services {
    padding: 100px 0;
    background: #f5f1e8;
}

.me-guest-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.me-service-card {
    background: #fff;
    padding: 35px;
    min-height: 220px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.me-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

.me-service-number {
    font-size: 12px;
    letter-spacing: 2px;
    color: #b08c3a;
    margin-bottom: 25px;
}

.me-service-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
}

.me-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 900px) {
    .me-guest-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .me-guest-services {
        padding: 70px 20px;
    }

    .me-guest-services-grid {
        grid-template-columns: 1fr;
    }
}