@font-face {
    font-family: "Mongolian Baiti";
    src: url("../fonts/monbaiti.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    padding: 0 6%;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 105px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    margin-left: auto;
    margin-right: 35px;
}

.main-nav a {
    position: relative;

    font-family: "Mongolian Baiti", serif;
    font-size: 17px;
    color: #fff;

    padding: 5px 0;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #fff;

    transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.search-button {
    border: none;
    background: transparent;
    cursor: pointer;

    width: 22px;
    height: 22px;
    padding: 0;
}

.search-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 670px;
    height: 62vw;
    max-height: 760px;

    background-image: url("../assets/WhatsApp Image 2026-09-09 at 11.14.29 (3)-ezremove.png");
    background-size: cover;
    background-position: center;
    
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.38) 48%,
            rgba(0, 0, 0, 0.15) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 55%;
    max-width: 620px;

    margin-left: 9%;
    margin-top: 55px;

    color: #fff;
}

.eyebrow {
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: normal;
    line-height: 0.98;

    margin-bottom: 30px;
}

.hero-text {
    max-width: 560px;

    font-size: 14px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.88);

    margin-bottom: 10px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 17px;

    margin-top: 28px;

    padding: 13px 22px;

    border: 1px solid rgba(255, 255, 255, 0.8);

    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.primary-button span {
    font-size: 16px;
}

.primary-button:hover {
    background: #fff;
    color: #222;
}


/* ================= GENERAL SECTION ================= */

.services-section {
    padding: 115px 8% 125px;
    background: #fff;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.eyebrow.dark {
    color: #777;
}

.section-heading h2,
.portfolio-heading h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: clamp(42px, 4.5vw, 65px);
    font-weight: normal;
    line-height: 1;

    margin-bottom: 28px;
}

.section-heading > p:not(.eyebrow) {
    max-width: 570px;

    color: #666;
    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.text-link {
    display: inline-block;

    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;

    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.text-link:hover {
    opacity: 0.55;
}


/* ================= SERVICES CARDS ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;

    min-height: 400px;

    background: #eee;
}

.service-card > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.08) 70%
    );
}

.service-card:hover > img {
    transform: scale(1.05);
}

.service-card-content {
    position: absolute;
    z-index: 2;

    left: 25px;
    right: 25px;
    bottom: 25px;

    color: #fff;
}

.service-card-content span {
    display: block;

    font-size: 10px;
    letter-spacing: 2px;

    margin-bottom: 8px;
}

.service-card-content h3 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 29px;
    font-weight: normal;

    margin-bottom: 8px;
}

.service-card-content p {
    font-size: 12px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.8);
}


/* ================= PORTFOLIO ================= */

.portfolio-section {
    position: relative;

    padding: 115px 8% 125px;

    background-image:
        url("../assets/WhatsApp Image 2026-09-09 at 11.17.18 (20).jpeg");

    background-size: cover;
    background-position: center;
    
    color: #fff;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;

    background: rgba(20, 20, 20, 0.80);
}

.portfolio-inner {
    position: relative;
    z-index: 2;
}

.portfolio-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.portfolio-heading h2 {
    margin-bottom: 28px;
}

.portfolio-heading > p:not(.eyebrow) {
    max-width: 570px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 18px;
}

.text-link.light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;

    min-height: 430px;
}

.portfolio-card > img {
    width: 100%;
    height: 100%;
    min-height: 430px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.portfolio-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.02) 70%
    );
}

.portfolio-card:hover > img {
    transform: scale(1.05);
}

.portfolio-card > div {
    position: absolute;
    z-index: 2;

    left: 25px;
    bottom: 25px;
}

.portfolio-card span {
    display: block;

    font-size: 10px;
    letter-spacing: 2px;

    margin-bottom: 7px;
}

.portfolio-card h3 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 28px;
    font-weight: normal;
}


/* ================= FOOTER ================= */

.footer {
    background: #303030;
    color: #fff;

    padding: 75px 8% 25px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;

    padding-bottom: 65px;
}

.footer-brand img {
    width: 105px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;

    margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    line-height: 1.8;

    margin-bottom: 5px;
}

.footer-column a:hover {
    color: #fff;
}

.socials {
    display: flex;
    flex-direction: column;

    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.13);

    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}


/* ================= TABLET ================= */

@media (max-width: 1000px) {

    .main-nav {
        gap: 18px;
        margin-right: 20px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .navbar {
        height: 75px;
        padding: 0 6%;
    }

    .logo {
        width: 85px;
    }

    .main-nav {
        display: none;
    }

    .search-button {
        margin-left: auto;
    }

    .hero {
        min-height: 650px;
        height: auto;

        padding: 150px 7% 80px;

        align-items: flex-end;
    }

    .hero-content {
        width: 100%;
        max-width: none;

        margin: 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .services-section,
    .portfolio-section {
        padding: 80px 7%;
    }

    .section-heading h2,
    .portfolio-heading h2 {
        font-size: 43px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .portfolio-card {
        min-height: 400px;
    }

    .portfolio-card > img {
        min-height: 400px;
    }

    .footer {
        padding: 60px 7% 25px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}/* =========================================
   INNER PAGES
   ========================================= */

.about-page,
.services-page,
.portfolio-page,
.news-page,
.contact-page {
    padding: 150px 8% 100px;
    background: #f8f7f3;
    min-height: 80vh;
}

.about-page-heading,
.services-page-heading,
.portfolio-page-heading,
.news-page-heading,
.contact-page-heading {
    max-width: 850px;
    margin-bottom: 70px;
}

.about-page h1,
.services-page h1,
.portfolio-page h1,
.news-page h1,
.contact-page h1 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 400;
    color: #18202a;
    margin: 15px 0 25px;
}

.about-page-heading > p:last-child,
.services-page-heading > p:last-child,
.portfolio-page-heading > p:last-child,
.news-page-heading > p:last-child,
.contact-page-heading > p:last-child {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.eyebrow.dark {
    color: #68717b;
}


/* =========================================
   ABOUT
   ========================================= */

.about-page {
    padding-bottom: 120px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #d8d5ce;
}

.about-value {
    padding: 40px 40px 45px 0;
    border-bottom: 1px solid #d8d5ce;
}

.about-value:nth-child(odd) {
    border-right: 1px solid #d8d5ce;
    padding-right: 50px;
}

.about-value:nth-child(even) {
    padding-left: 50px;
}

.about-value span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #777;
}

.about-value h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    margin: 15px 0;
    color: #18202a;
}

.about-value p {
    color: #555;
    line-height: 1.7;
}


/* =========================================
   SERVICES
   ========================================= */

.services-list {
    border-top: 1px solid #d8d5ce;
}

.service-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 45px 0;
    border-bottom: 1px solid #d8d5ce;
}

.service-detail > span {
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
}

.service-detail h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    color: #18202a;
    margin: 0 0 12px;
}

.service-detail p {
    max-width: 750px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   PORTFOLIO
   ========================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-item {
    background: #fff;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #777;
}

.portfolio-info h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    margin: 12px 0;
    color: #18202a;
}

.portfolio-info p {
    color: #555;
    line-height: 1.7;
}


/* =========================================
   NEWS / ARTIKEL
   ========================================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: #fff;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 28px;
}

.news-date {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

.news-content h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 400;
    color: #18202a;
    margin: 15px 0;
}

.news-content p {
    color: #555;
    line-height: 1.7;
}

.news-content a {
    display: inline-block;
    margin-top: 15px;
    color: #18202a;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.news-content a:hover {
    opacity: .6;
}


/* =========================================
   CONTACT
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.contact-info h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 40px;
    color: #18202a;
}

.contact-item {
    border-top: 1px solid #d8d5ce;
    padding: 20px 0;
}

.contact-item span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

.contact-item p {
    margin: 8px 0 0;
    color: #333;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 12px 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #18202a;
}

.contact-submit {
    align-self: flex-start;
    padding: 16px 28px;
    border: 1px solid #18202a;
    background: #18202a;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
}

.contact-submit:hover {
    background: transparent;
    color: #18202a;
}


/* =========================================
   INNER PAGE NAVBAR
   ========================================= */

body:not(:has(.hero)) .navbar {
    background: #18202a;
}

body:not(:has(.hero)) .main-nav a {
    color: #ffffff;
}

body:not(:has(.hero)) .search-button img {
    filter: brightness(0) invert(1);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {

    .about-page,
    .services-page,
    .portfolio-page,
    .news-page,
    .contact-page {
        padding: 120px 6% 70px;
    }

    .about-page h1,
    .services-page h1,
    .portfolio-page h1,
    .news-page h1,
    .contact-page h1 {
        font-size: 45px;
    }

    .portfolio-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}


@media (max-width: 600px) {

    .about-page h1,
    .services-page h1,
    .portfolio-page h1,
    .news-page h1,
    .contact-page h1 {
        font-size: 38px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-value:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }

    .about-value:nth-child(even) {
        padding-left: 0;
    }

    .service-detail {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .service-detail h2 {
        font-size: 30px;
    }

    .portfolio-item img {
        height: 300px;
    }
}/* =========================================
   FINAL INNER PAGE FIX
   ========================================= */

/* NAVBAR UNTUK HALAMAN DALAM */

body:not(:has(.hero)) .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background: #f8f7f3;
    padding: 25px 6%;
    z-index: 100;
    border-bottom: 1px solid #e5e2db;
}

body:not(:has(.hero)) .logo img {
    filter: none;
}

body:not(:has(.hero)) .main-nav {
    display: flex;
    align-items: center;
}

body:not(:has(.hero)) .main-nav a {
    color: #18202a;
}


/* JARAK HALAMAN */

.about-page,
.services-page,
.portfolio-page,
.news-page,
.contact-page {
    padding-top: 160px;
}


/* JUDUL */

.about-page h1,
.services-page h1,
.portfolio-page h1,
.news-page h1,
.contact-page h1 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-weight: 400;
    letter-spacing: -1px;
}


/* =========================================
   ABOUT
   ========================================= */

.about-page-heading {
    max-width: 800px;
}

.about-values {
    max-width: 1100px;
}


/* =========================================
   SERVICES
   ========================================= */

.services-page-heading {
    max-width: 800px;
}

.services-list {
    max-width: 1100px;
}

.service-detail {
    grid-template-columns: 70px 1fr;
}

.service-detail h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-weight: 400;
}


/* =========================================
   PORTFOLIO
   ========================================= */

.portfolio-page-heading {
    max-width: 800px;
}

.portfolio-grid {
    max-width: 1200px;
}

.portfolio-item img {
    height: 360px;
    object-fit: cover;
}

.portfolio-info h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-weight: 400;
}


/* =========================================
   ARTIKEL
   ========================================= */

.news-page-heading {
    max-width: 800px;
}

.news-grid {
    max-width: 1200px;
}

.news-image {
    height: 260px;
}

.news-content h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-weight: 400;
}


/* =========================================
   KONTAK
   ========================================= */

.contact-page-heading {
    max-width: 800px;
}

.contact-wrapper {
    max-width: 1100px;
}

.contact-info h2 {
    font-family: "Mongolian Baiti", Georgia, serif;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    border: 1px solid #d4d1ca;
    padding: 15px;
    background: #fff;
}

.form-group textarea {
    min-height: 150px;
}

.contact-submit {
    margin-top: 5px;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {
    position: relative;
    z-index: 2;
}/* =========================================
   EXCO TYPOGRAPHY
   ========================================= */

@font-face {
    font-family: "Mongolian Baiti";
    src: url("../fonts/monbaiti.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Source Serif";
    src: url("../fonts/SourceSerifVariable-Roman.otf") format("opentype");
    font-weight: 100 900;
}

@font-face {
    font-family: "Acumin";
    src: url("../fonts/AcuminVariableConcept.otf") format("opentype");
    font-weight: 100 900;
}

@font-face {
    font-family: "Myriad";
    src: url("../fonts/MyriadVariableConcept-Roman.otf") format("opentype");
    font-weight: 100 900;
}


/* BODY */

body {
    font-family: "Acumin", Arial, sans-serif;
}


/* NAVBAR */

.main-nav a {
    font-family: "Mongolian Baiti", serif;
    font-size: 17px;
}


/* JUDUL */

h1,
h2 {
    font-family: "Source Serif", Georgia, serif;
    font-weight: 400;
}


/* TEKS */

p {
    font-family: "Acumin", Arial, sans-serif;
}


/* LABEL KECIL */

.eyebrow,
.news-date,
.contact-item span,
.portfolio-info span,
.service-detail > span {
    font-family: "Acumin", Arial, sans-serif;
}/* Ukuran logo footer */
.footer-logo img {
    width: 120px;
    height: auto;
}/* =========================
   FOOTER — FINAL
   ========================= */

.site-footer {
    background: #18202a;
    color: #ffffff;
    padding: 65px 7% 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Logo footer */
.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

/* Semua teks footer */
.site-footer p,
.site-footer a,
.site-footer span {
    color: #ffffff;
}

/* Kolom footer */
.footer-column h4 {
    font-family: "Mongolian Baiti", serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 20px;
}

.footer-column p {
    font-family: "Acumin", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 8px;
}

/* Navigasi */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: "Mongolian Baiti", serif;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.6;
}

/* Kontak */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    font-family: "Acumin", Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
}

/* Social media */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Garis bawah */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    font-family: "Acumin", Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    opacity: 0.75;
}

/* =========================
   FOOTER MOBILE
   ========================= */

@media (max-width: 700px) {

    .site-footer {
        padding: 50px 7% 25px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo img {
        width: 105px;
    }

    .footer-bottom {
        margin-top: 35px;
        flex-direction: column;
        align-items: flex-start;
    }
}/* =========================
   FOOTER
   ========================= */

.footer {
    background: #18202a;
    color: #ffffff;
    padding: 60px 7% 25px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    column-gap: 50px;
    row-gap: 40px;

    position: relative;
}

/* LOGO */

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}


/* KOLOM */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    font-family: "Mongolian Baiti", serif;
    font-size: 18px;
    font-weight: 400;

    margin: 0 0 18px;
    color: #ffffff;
}

.footer-column a,
.footer-column p {
    font-family: "Acumin", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;

    color: #ffffff;
    text-decoration: none;

    margin: 0 0 8px;
}

.footer-column a:hover {
    opacity: 0.6;
}


/* FOOTER BOTTOM */

.footer-bottom {
    grid-column: 1 / -1;

    border-top: 1px solid rgba(255,255,255,0.2);

    margin-top: 20px;
    padding-top: 20px;
}

.footer-bottom p {
    font-family: "Acumin", Arial, sans-serif;
    font-size: 12px;

    color: rgba(255,255,255,0.7);

    margin: 0;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
        padding: 50px 7% 25px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        width: 105px;
    }

    .footer-bottom {
        grid-column: 1 / -1;
    }
}/* =========================================
   TENTANG KAMI — FINAL
   ========================================= */

.about-page {
    min-height: 100vh;
    padding: 150px 8% 100px;
    background: #f8f7f3;
    box-sizing: border-box;
}

.about-content {
    max-width: 850px;
    margin-bottom: 100px;
}

.about-content .eyebrow {
    margin-bottom: 18px;
}

.about-content h1 {
    font-family: "Source Serif", Georgia, serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.08;
    color: #18202a;
    margin: 0 0 35px;
}

.about-content > p:not(.eyebrow) {
    max-width: 720px;
    font-family: "Acumin", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4f5357;
    margin: 0 0 18px;
}


/* NILAI-NILAI */

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #d8d5ce;
}

.value-item {
    padding: 38px 45px 42px 0;
    border-bottom: 1px solid #d8d5ce;
    box-sizing: border-box;
}

.value-item:nth-child(odd) {
    border-right: 1px solid #d8d5ce;
    padding-right: 50px;
}

.value-item:nth-child(even) {
    padding-left: 50px;
}

.value-item > span {
    font-family: "Acumin", Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    color: #777;
}

.value-item h2 {
    font-family: "Source Serif", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #18202a;
    margin: 14px 0 12px;
}

.value-item p {
    max-width: 420px;
    font-family: "Acumin", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}


/* MOBILE */

@media (max-width: 700px) {

    .about-page {
        padding: 125px 7% 70px;
    }

    .about-content {
        margin-bottom: 65px;
    }

    .about-content h1 {
        font-size: 40px;
    }

    .about-content > p:not(.eyebrow) {
        font-size: 15px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .value-item,
    .value-item:nth-child(odd),
    .value-item:nth-child(even) {
        padding: 30px 0;
        border-right: none;
    }

    .value-item h2 {
        font-size: 28px;
    }
}