/* =====================================================
   NULIS'IN
   CSS / STYLE WEBSITE
   ===================================================== */


/* ==================== WARNA ==================== */

:root {

    --ink: #17211b;

    --muted: #69746c;

    --cream: #f7f4ec;

    --paper: #fffdf8;

    --green: #173c2a;

    --lime: #d8ed72;

    --line: #dfe4db;

    --shadow:
        0 20px 60px rgba(23, 60, 42, 0.10);
}


/* ==================== RESET ==================== */

* {
    box-sizing: border-box;

    margin: 0;

    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        sans-serif;

    color: var(--ink);

    background: var(--cream);

    line-height: 1.6;
}


a {

    color: inherit;

    text-decoration: none;
}


/* ==================== CONTAINER ==================== */

.container {

    width:
        min(1120px, calc(100% - 40px));

    margin: auto;
}


/* ==================== NAVBAR ==================== */

nav {

    position: sticky;

    top: 0;

    z-index: 10;

    background:
        rgba(247, 244, 236, 0.88);

    backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid rgba(223, 228, 219, 0.8);
}


.nav-inner {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {

    font-weight: 800;

    letter-spacing: -0.04em;

    font-size: 1.35rem;
}


.logo span {

    color: #6b8a31;
}


/* NAVIGATION */

.nav-links {

    display: flex;

    gap: 28px;

    font-size: 0.93rem;

    color: #526058;
}


.nav-links a {

    transition: 0.2s ease;
}


.nav-links a:hover {

    color: var(--ink);
}


/* ==================== BUTTON ==================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 999px;

    font-weight: 700;

    border:
        1px solid var(--green);

    transition: 0.2s ease;
}


.btn-primary {

    background: var(--green);

    color: white;
}


.btn-primary:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px rgba(23, 60, 42, 0.18);
}


.btn-ghost {

    border-color: var(--line);

    background: var(--paper);
}


.btn-ghost:hover {

    border-color: #bfc8bd;
}


/* ==================== HERO ==================== */

.hero {

    padding:
        96px 0 88px;

    overflow: hidden;
}


.hero-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


/* EYEBROW */

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: #59732a;

    margin-bottom: 20px;
}


.eyebrow::before {

    content: "";

    width: 26px;

    height: 2px;

    background: #8aa73e;
}


.eyebrow.center {

    justify-content: center;
}


/* HERO TITLE */

h1 {

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(3.3rem, 7vw, 6.5rem);

    line-height: 0.96;

    letter-spacing: -0.055em;

    max-width: 720px;
}


h1 em {

    color: #6d8b36;

    font-style: normal;
}


/* HERO DESCRIPTION */

.hero-copy {

    margin:
        28px 0 34px;

    max-width: 580px;

    color: var(--muted);

    font-size: 1.08rem;
}


/* HERO BUTTONS */

.buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* ==================== HERO CARD ==================== */

.hero-card {

    position: relative;

    min-height: 440px;

    border-radius: 34px;

    background: var(--green);

    color: white;

    padding: 34px;

    box-shadow: var(--shadow);

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.hero-card::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    background: var(--lime);

    border-radius: 50%;

    right: -90px;

    top: -80px;
}


.hero-card::after {

    content: "“";

    position: absolute;

    font-family: Georgia, serif;

    font-size: 13rem;

    line-height: 1;

    right: 18px;

    bottom: -48px;

    color:
        rgba(255, 255, 255, 0.08);
}


.mini-label {

    position: relative;

    z-index: 1;

    font-size: 0.78rem;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    opacity: 0.65;
}


.quote {

    position: relative;

    z-index: 1;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(2rem, 4vw, 3.1rem);

    line-height: 1.08;

    max-width: 460px;
}


.scribble {

    position: relative;

    z-index: 1;

    font-size: 0.9rem;

    opacity: 0.7;
}


/* ==================== GENERAL SECTION ==================== */

section {

    padding: 92px 0;
}


.section-head {

    max-width: 660px;

    margin-bottom: 44px;
}


.section-head h2 {

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(2.2rem, 5vw, 4rem);

    line-height: 1.05;

    letter-spacing: -0.04em;

    margin-bottom: 15px;
}


.section-head p {

    color: var(--muted);
}


/* ==================== SERVICES ==================== */

.services {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.service {

    background: var(--paper);

    border:
        1px solid var(--line);

    border-radius: 24px;

    padding: 30px;

    min-height: 250px;

    transition: 0.2s ease;
}


.service:hover {

    transform:
        translateY(-4px);

    box-shadow: var(--shadow);
}


.number {

    font-size: 0.78rem;

    color: #82907f;

    font-weight: 700;
}


.service h3 {

    font-size: 1.25rem;

    margin:
        42px 0 10px;
}


.service p {

    color: var(--muted);

    font-size: 0.94rem;
}


/* ==================== ABOUT ==================== */

.about {

    background: var(--green);

    color: white;

    border-radius: 34px;

    padding: 58px;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 60px;

    align-items: center;
}


.about h2 {

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(2.2rem, 4vw, 3.8rem);

    line-height: 1.05;
}


.about p {

    color:
        rgba(255, 255, 255, 0.72);

    margin-bottom: 18px;
}


.about strong {

    color: var(--lime);
}


/* =====================================================
   OUR TEAM
   ===================================================== */

.team-section {

    background: var(--paper);
}


/* TEAM GRID */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* TEAM CARD */

.team-card {

    background: var(--cream);

    border:
        1px solid var(--line);

    border-radius: 26px;

    overflow: hidden;

    transition: 0.25s ease;
}


.team-card:hover {

    transform:
        translateY(-6px);

    box-shadow: var(--shadow);
}


/* FOTO TEAM */

.team-photo {

    width: 100%;

    height: 340px;

    object-fit: cover;

    display: block;
}


/* TEAM INFO */

.team-info {

    padding: 24px;
}


.team-info h3 {

    font-size: 1.3rem;

    margin-bottom: 4px;
}


.team-role {

    color: var(--muted);

    font-size: 0.9rem;

    margin-bottom: 18px;
}


/* INSTAGRAM MEMBER */

.instagram-link {

    font-size: 0.9rem;

    font-weight: 700;

    color: var(--green);

    transition: 0.2s ease;
}


.instagram-link:hover {

    color: #6d8b36;
}


/* INSTAGRAM UTAMA */

.team-instagram {

    text-align: center;

    margin-top: 55px;
}


.team-instagram p {

    color: var(--muted);

    margin-bottom: 14px;
}


/* ==================== CTA ==================== */

.cta {

    text-align: center;

    padding:
        110px 0 120px;
}


.cta h2 {

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(2.6rem, 6vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.05em;

    max-width: 800px;

    margin:
        0 auto 24px;
}


.cta p {

    color: var(--muted);

    margin:
        0 auto 30px;

    max-width: 550px;
}


/* ==================== FOOTER ==================== */

footer {

    border-top:
        1px solid var(--line);

    padding: 28px 0;

    color: #778078;

    font-size: 0.88rem;
}


.footer-inner {

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


/* =====================================================
   MOBILE / HP
   ===================================================== */

@media (max-width: 800px) {


    /* NAV */

    .nav-links {

        display: none;
    }


    .nav-button {

        min-height: 42px;

        padding: 0 17px;

        font-size: 0.85rem;
    }


    /* HERO */

    .hero {

        padding-top: 64px;
    }


    .hero-grid {

        grid-template-columns: 1fr;
    }


    /* SERVICES */

    .services {

        grid-template-columns: 1fr;
    }


    /* HERO CARD */

    .hero-card {

        min-height: 360px;
    }


    /* ABOUT */

    .about {

        grid-template-columns: 1fr;

        padding: 38px 28px;
    }


    /* TEAM */

    .team-grid {

        grid-template-columns: 1fr;
    }


    .team-photo {

        height: 380px;
    }


    /* SECTION */

    section {

        padding: 70px 0;
    }


    /* FOOTER */

    .footer-inner {

        flex-direction: column;
    }

}