/* ========================================
   VIBALOO — BRAND COLORS
======================================== */

:root {
    --green: #84b2a7;
    --gold: #e3b55f;

    --black: #171717;
    --white: #ffffff;
    --cream: #f5f3ee;
    --gray: #666666;
}


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* ========================================
   HEADER
======================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 100;
}

.navbar {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 22px 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */


.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* NAVIGATION */

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    position: relative;

    font-size: 14px;
    font-weight: 500;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--green);

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}


/* HEADER BUTTON */

.nav-button {
    padding: 12px 22px;

    background: var(--green);
    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 8% 100px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.30)
        ),
        url("../images/hero.jpg")
        center center / cover no-repeat;

    color: var(--white);
}


/* Small gold line */

.hero::before {
    content: "";

    position: absolute;
    left: 8%;
    top: 32%;

    width: 45px;
    height: 2px;

    background: var(--gold);
}


.hero-content {
    max-width: 800px;
}


/* HERO SMALL TITLE */

.hero-subtitle {
    margin-bottom: 22px;

    color: var(--green);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
}


/* HERO TITLE */

.hero h1 {
    margin-bottom: 30px;

    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.95;
    font-weight: 400;

    letter-spacing: -3px;
}


/* HERO TEXT */

.hero-text {
    max-width: 520px;

    margin-bottom: 38px;

    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.button {
    display: inline-block;

    padding: 14px 26px;

    background: var(--green);
    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.button:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.button-outline {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);
}

.button-outline:hover {
    background: var(--white);
    color: var(--black);
}


/* ========================================
   INTRO
======================================== */

.intro {
    max-width: 1000px;

    margin: 0 auto;

    padding: 150px 30px;
}

.section-label {
    margin-bottom: 20px;

    color: var(--green);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.intro h2,
.section-heading h2,
.process-preview h2,
.cta h2 {
    margin-bottom: 30px;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -2px;
}

.intro > p:not(.section-label) {
    max-width: 570px;

    margin-bottom: 28px;

    color: var(--gray);

    font-size: 18px;
}

.text-link {
    display: inline-block;

    padding-bottom: 5px;

    border-bottom: 1px solid var(--green);

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--green);
}


/* ========================================
   SERVICES
======================================== */

.services-preview {
    padding: 130px 6%;

    background: #eae7df;
}

.section-heading {
    margin-bottom: 55px;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 3px;

    margin-bottom: 45px;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    min-height: 360px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background: var(--black);
    color: var(--white);

    transition: transform 0.4s ease;
}

.service-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        transparent 45%,
        rgba(0, 0, 0, 0.65)
    );
}

.service-card h3,
.service-card span {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 8px;

    font-size: 34px;
    font-weight: 400;
}

.service-card span {
    color: var(--green);

    font-size: 13px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:hover span {
    color: var(--gold);
}


/* ========================================
   PROJECTS
======================================== */

.projects-preview {
    padding: 140px 6%;
}

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-bottom: 60px;
}


/* PROJECT IMAGE */

.project-card {
    overflow: hidden;
}

.project-card img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}


/* PROJECT INFO */

.project-info {
    padding: 18px 0;
}

.project-info span {
    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.project-info h3 {
    margin-top: 5px;

    font-size: 23px;

    font-weight: 400;
}


/* ========================================
   PROCESS
======================================== */

.process-preview {
    padding: 150px 8%;

    background: var(--black);

    color: var(--white);
}

.process-preview .section-label {
    color: var(--gold);
}

.process-preview .text-link {
    border-color: var(--green);
}


/* ========================================
   CTA
======================================== */

.cta {
    padding: 150px 25px;

    text-align: center;
}

.cta .section-label {
    color: var(--gold);
}

.cta .button {
    margin-top: 10px;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 65px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #111;

    color: var(--white);
}

.footer-logo {
    font-size: 20px;

    font-weight: 700;

    letter-spacing: 3px;
}

.footer-links {
    display: flex;

    gap: 28px;
}

.footer-links a {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.75);

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green);
}

.footer p {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.4);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .navbar {
        padding: 18px 20px;
    }

    .logo img {
        width: 75px;
    }

    .nav-links {
        display: none;
    }

    .nav-button {
        padding: 10px 15px;

        font-size: 11px;
    }


    /* HERO */

    .hero {
        min-height: 100svh;

        padding: 130px 25px 70px;
    }

    .hero::before {
        left: 25px;
        top: 28%;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    /* SECTIONS */

    .intro {
        padding: 100px 25px;
    }

    .services-preview,
    .projects-preview {
        padding: 90px 25px;
    }

    .process-preview,
    .cta {
        padding: 100px 25px;
    }


    /* GRIDS */

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;

        gap: 12px;
    }
}





/*projects page css*/



/* ========================================
   INNER PAGE HEADER
======================================== */

.inner-header {
    position: relative;
    background: var(--cream);
}


/* ========================================
   PAGE HEADER
======================================== */

.page-header {
    padding: 120px 6% 80px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
}

.page-header > p:last-child {
    max-width: 550px;
    margin: auto;
    color: var(--gray);
    font-size: 17px;
}


/* ========================================
   PROJECTS PAGE
======================================== */

.projects-page {
    padding: 30px 6% 120px;
}


/* FILTER */

.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
}

.filter {
    padding: 10px 18px;

    border: 1px solid #d5d2ca;
    background: transparent;

    color: var(--black);

    font-family: inherit;
    font-size: 13px;

    cursor: pointer;

    transition: 0.3s;
}

.filter:hover,
.filter.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
}


/* GALLERY */

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
}

.gallery-item {
    display: block;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-info {
    padding: 18px 0;
}

.gallery-info span {
    color: var(--green);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-info h2 {
    margin-top: 5px;

    font-size: 25px;
    font-weight: 400;
}


/* ========================================
   PROJECTS MOBILE
======================================== */

@media (max-width: 700px) {

    .page-header {
        padding: 80px 25px 60px;
    }

    .projects-page {
        padding: 20px 25px 80px;
    }

    .projects-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter {
        white-space: nowrap;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
    }

}



/* services page*/



/* ========================================
   SERVICES PAGE
======================================== */

.services-page {
    padding: 30px 6% 120px;
}

.service-row {
    max-width: 1300px;
    margin: 0 auto 120px;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;

    align-items: center;
}

.service-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-row.reverse .service-image {
    order: 2;
}

.service-row.reverse .service-content {
    order: 1;
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.service-image:hover img {
    transform: scale(1.04);
}

.service-content {
    max-width: 500px;
}

.service-number {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-content h2 {
    margin-bottom: 20px;

    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;

    font-weight: 400;
}

.service-content p {
    margin-bottom: 25px;

    color: var(--gray);

    font-size: 17px;
}


/* ========================================
   SERVICES MOBILE
======================================== */

@media (max-width: 800px) {

    .services-page {
        padding: 20px 25px 80px;
    }

    .service-row,
    .service-row.reverse {
        margin-bottom: 90px;

        display: flex;
        flex-direction: column;

        gap: 35px;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-content {
        order: initial;
    }

    .service-content {
        max-width: none;
    }

    .service-content h2 {
        font-size: 48px;
    }

}






/* process page */



/* ========================================
   PROCESS PAGE
======================================== */

.process-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 30px 120px;
}

.process-step {
    display: grid;
    grid-template-columns: 150px 1fr;

    gap: 70px;

    padding: 70px 0;

    border-top: 1px solid #d8d5ce;
}

.process-step:last-child {
    border-bottom: 1px solid #d8d5ce;
}

.process-number {
    color: var(--gold);

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.process-content {
    max-width: 650px;
}

.process-content > span {
    color: var(--green);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.process-content h2 {
    margin: 15px 0 20px;

    font-size: clamp(42px, 5vw, 65px);

    font-weight: 400;
    line-height: 1;
}

.process-content p {
    max-width: 580px;

    color: var(--gray);

    font-size: 17px;
}


/* ========================================
   PROCESS QUOTE
======================================== */

.process-quote {
    padding: 120px 25px;

    background: var(--green);

    color: white;

    text-align: center;
}

.process-quote p {
    max-width: 850px;

    margin: 0 auto 20px;

    font-size: clamp(30px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 400;
}

.process-quote span {
    font-size: 13px;
}


/* ========================================
   PROCESS MOBILE
======================================== */

@media (max-width: 700px) {

    .process-page {
        padding: 20px 25px 80px;
    }

    .process-step {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 50px 0;
    }

    .process-content h2 {
        font-size: 48px;
    }

    .process-quote {
        padding: 90px 25px;
    }

}


/* about page */



/* ========================================
   ABOUT PAGE
======================================== */

/* ========================================
   INNER PAGE HEADER — WHITE NAVBAR
======================================== */

.inner-header {
    position: relative;

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid #e8e5df;
}

.inner-header .navbar {
    min-height: 78px;
}

.inner-header .logo {
    color: var(--green);
}

.inner-header .nav-links a {
    color: var(--black);
}

.inner-header .nav-links a:hover {
    color: var(--green);
}

.inner-header .nav-button {
    background: var(--green);
    color: var(--white);
}

.inner-header .nav-button:hover {
    background: var(--gold);
}

.about-story {
    max-width: 1300px;

    margin: 0 auto;

    padding: 40px 6% 140px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;

    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;
}

.about-content {
    max-width: 550px;
}

.about-content h2 {
    margin-bottom: 30px;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    font-weight: 400;
}

.about-content p:not(.section-label) {
    margin-bottom: 20px;

    color: var(--gray);

    font-size: 17px;
}


/* ========================================
   VALUES
======================================== */

.values {
    padding: 130px 6%;

    background: #eae7df;
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2px;
}

.value-card {
    min-height: 300px;

    padding: 35px;

    background: var(--white);
}

.value-card span {
    color: var(--gold);

    font-size: 13px;
    font-weight: 700;
}

.value-card h3 {
    margin: 50px 0 15px;

    font-size: 28px;

    font-weight: 400;
}

.value-card p {
    color: var(--gray);

    font-size: 15px;
}


/* ========================================
   ABOUT MOBILE
======================================== */

@media (max-width: 900px) {

    .about-story {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 20px 25px 100px;
    }

    .about-content {
        max-width: none;
    }

    .values {
        padding: 90px 25px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

}




/* contact page */




/* ========================================
   CONTACT PAGE
======================================== */

.contact-section {
    max-width: 1200px;
    margin: 0 auto;

    padding: 30px 6% 130px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}


/* CONTACT INFO */

.contact-info h2 {
    margin-bottom: 25px;

    font-size: clamp(38px, 4vw, 55px);
    line-height: 1;

    font-weight: 400;
}

.contact-info > p:not(.section-label) {
    margin-bottom: 40px;

    color: var(--gray);

    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.contact-details div {
    display: flex;
    flex-direction: column;
}

.contact-details span {
    margin-bottom: 4px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-details a {
    font-size: 15px;

    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--green);
}


/* CONTACT FORM */

.contact-form-wrapper {
    padding: 45px;

    background: #eae7df;
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d0cdc5;

    background: var(--cream);

    color: var(--black);

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.contact-form .button {
    border: none;

    cursor: pointer;

    align-self: flex-start;
}


/* ========================================
   CONTACT BOTTOM
======================================== */

.contact-bottom {
    padding: 80px 25px;

    background: var(--green);

    color: white;

    text-align: center;
}

.contact-bottom p {
    margin-bottom: 10px;

    font-size: 16px;
}

.contact-bottom a {
    font-size: 25px;
    font-weight: 500;
}

.contact-bottom a:hover {
    color: var(--gold);
}


/* ========================================
   CONTACT MOBILE
======================================== */

@media (max-width: 800px) {

    .contact-section {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 20px 25px 90px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

}









/* =========================================================
   VIBALOO — CONTACT / CINEMATIC REDESIGN
   Uses the existing brand palette. No new brand colors.
   ========================================================= */
.contact-page { background: var(--cream); }
.contact-header { background: rgba(245,243,238,.94); backdrop-filter: blur(12px); border-bottom:1px solid rgba(23,23,23,.08); }
.contact-header .navbar { min-height:78px; }
.contact-header .logo { color:var(--black); }
.contact-header .nav-links a { color:var(--black); }

/* HERO */
.contact-hero { position:relative; min-height:72vh; padding:155px 8% 75px; overflow:hidden; background:var(--black); color:var(--white); display:flex; align-items:flex-end; }
.contact-hero::before { content:""; position:absolute; width:42vw; height:42vw; right:-12vw; top:-18vw; border:1px solid rgba(132,178,167,.35); border-radius:50%; }
.contact-hero::after { content:""; position:absolute; width:1px; height:72%; right:18%; top:18%; background:linear-gradient(transparent,rgba(227,181,95,.7),transparent); }
.contact-hero-inner { position:relative; z-index:2; max-width:1000px; }
.contact-kicker { display:flex; align-items:center; gap:13px; color:var(--green); font-size:11px; font-weight:700; letter-spacing:4px; margin-bottom:28px; }
.contact-kicker span { width:42px; height:1px; background:var(--gold); }
.contact-hero h1 { margin:0 0 32px; font-size:clamp(64px,10vw,145px); line-height:.82; letter-spacing:-6px; font-weight:400; }
.contact-hero h1 em,.contact-main h2 em { color:var(--green); font-family:Georgia,"Times New Roman",serif; font-style:italic; font-weight:400; }
.contact-lead { max-width:580px; margin-left:7px; font-size:18px; line-height:1.65; color:rgba(255,255,255,.7); }
.contact-meta { display:flex; gap:30px; margin-top:50px; color:rgba(255,255,255,.48); font-size:10px; letter-spacing:2px; text-transform:uppercase; }
.hero-mark { position:absolute; right:8%; bottom:72px; writing-mode:vertical-rl; transform:rotate(180deg); color:rgba(255,255,255,.28); font-size:10px; letter-spacing:4px; }
.hero-mark span { color:var(--gold); }

/* MAIN */
.contact-main { max-width:1380px; margin:auto; padding:120px 6% 140px; display:grid; grid-template-columns:.85fr 1.15fr; gap:100px; }
.contact-info { padding-top:15px; }
.eyebrow { color:var(--green); font-size:10px; font-weight:700; letter-spacing:3px; margin-bottom:25px; }
.contact-main h2 { font-size:clamp(40px,4.8vw,67px); line-height:.96; font-weight:400; letter-spacing:-2px; margin-bottom:28px; }
.contact-info > p { max-width:490px; color:var(--gray); font-size:16px; line-height:1.8; }
.contact-details { margin-top:52px; display:grid; grid-template-columns:1fr 1fr; gap:32px 25px; }
.contact-details div { border-top:1px solid #d7d3ca; padding-top:13px; }
.contact-details span { display:block; color:var(--gold); font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:8px; }
.contact-details a,.contact-details p { font-size:14px; }
.contact-details a:hover { color:var(--green); }
.contact-note { margin-top:65px; padding-left:20px; border-left:2px solid var(--green); color:var(--gray); font-size:12px; line-height:1.7; }
.contact-note strong { color:var(--black); font-size:13px; }

/* FORM */
.contact-form-wrapper { background:#eae7df; padding:48px; position:relative; }
.contact-form-wrapper::before { content:""; position:absolute; top:0; right:0; width:85px; height:85px; border-left:1px solid rgba(132,178,167,.5); border-bottom:1px solid rgba(132,178,167,.5); }
.form-top { display:flex; justify-content:space-between; color:var(--green); font-size:10px; font-weight:700; letter-spacing:2px; margin-bottom:42px; }
.form-top span:last-child { color:var(--gold); }
.contact-form { gap:25px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.form-group { gap:9px; }
.form-group label { color:var(--black); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; }
.form-group input,.form-group select,.form-group textarea { border:0; border-bottom:1px solid #c9c5bc; background:transparent; border-radius:0; padding:13px 0; font-size:14px; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--green); }
.form-group textarea { min-height:150px; }
.form-bottom { display:flex; align-items:center; justify-content:space-between; gap:25px; padding-top:12px; }
.form-bottom p { max-width:250px; color:var(--gray); font-size:11px; line-height:1.5; }
.contact-form .button { padding:16px 25px; }
.contact-form .button span { margin-left:18px; }

/* FINAL CTA */
.contact-bottom { min-height:360px; padding:90px 25px; position:relative; overflow:hidden; background:var(--green); color:white; text-align:center; }
.contact-bottom-number { position:absolute; left:50%; top:50%; transform:translate(-50%,-57%); font-family:Georgia,serif; font-size:390px; line-height:1; color:rgba(255,255,255,.08); pointer-events:none; }
.contact-bottom p,.contact-bottom a { position:relative; z-index:1; }
.contact-bottom p { margin-bottom:15px; font-size:13px; letter-spacing:2px; text-transform:uppercase; }
.contact-bottom a { font-family:Georgia,serif; font-style:italic; font-size:clamp(42px,6vw,76px); }
.contact-bottom a span { color:var(--gold); font-family:Arial,sans-serif; font-style:normal; }
.contact-bottom a:hover { color:var(--black); }

/* MOBILE */
@media (max-width:800px) {
 .contact-hero { min-height:78svh; padding:130px 25px 55px; }
 .contact-hero h1 { font-size:clamp(58px,17vw,92px); letter-spacing:-4px; }
 .contact-lead { font-size:16px; }
 .contact-meta { flex-direction:column; gap:9px; margin-top:35px; }
 .hero-mark { display:none; }
 .contact-main { grid-template-columns:1fr; gap:70px; padding:85px 25px 95px; }
 .contact-details { grid-template-columns:1fr 1fr; }
 .contact-form-wrapper { padding:30px 22px; }
 .form-grid { grid-template-columns:1fr; gap:22px; }
 .form-bottom { align-items:flex-start; flex-direction:column; }
 .form-bottom .button { width:100%; }
 .contact-bottom { min-height:300px; }
 .contact-bottom-number { font-size:250px; }
}
@media (max-width:500px) {
 .contact-details { grid-template-columns:1fr; }
 .contact-main h2 { font-size:45px; }
 .contact-form-wrapper { margin:0 -2px; }
}
