/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f7f6f2;
    color: #171717;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(247, 246, 242, 0.94);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
    width: min(1250px, 92%);
    margin: auto;

    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.logo span {
    color: #b28a55;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;

    font-size: 14px;
    font-weight: 500;

    color: #555;

    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #111;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #b28a55;

    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #171717;
    color: white;

    padding: 13px 20px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.nav-button:hover {
    background: #b28a55;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    border: none;
    background: none;

    font-size: 24px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 130px 0 80px;

    position: relative;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(178, 138, 85, 0.08);

    right: -200px;
    top: -150px;

    filter: blur(5px);
}

.hero-container {
    width: min(1250px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 60px;
}

.hero-small {
    color: #9a7748;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid #dedbd4;

    padding: 8px 13px;

    border-radius: 30px;

    font-size: 12px;

    margin-bottom: 30px;

    color: #555;

    background: rgba(255, 255, 255, 0.4);
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #67a36c;

    box-shadow: 0 0 0 4px rgba(103, 163, 108, 0.12);
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(60px, 8vw, 105px);

    line-height: 0.95;

    letter-spacing: -5px;

    font-weight: 600;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;

    color: #b28a55;
}

.hero-description {
    max-width: 620px;

    color: #666;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-description strong {
    color: #222;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 23px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.primary-btn {
    background: #171717;
    color: white;
}

.primary-btn:hover {
    background: #b28a55;
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid #d7d4cc;
    color: #333;
}

.secondary-btn:hover {
    border-color: #171717;
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 10px;

    margin-top: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;

    border: 1px solid #ddd9d1;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #555;

    transition: 0.3s;
}

.social-links a:hover {
    background: #171717;
    color: white;

    transform: translateY(-3px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-area {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 650px;
}

.image-glow {
    position: absolute;

    width: 480px;
    height: 480px;

    background: #e9dfd0;

    border-radius: 50%;

    filter: blur(1px);
}

.image-frame {
    position: relative;

    width: 430px;
    height: 570px;

    overflow: hidden;

    border-radius: 220px 220px 25px 25px;

    background: #ddd;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.16);

    z-index: 2;
}

.image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.floating-card {
    position: absolute;

    z-index: 5;

    bottom: 70px;
    left: 20px;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(15px);

    padding: 15px 20px;

    border-radius: 14px;

    display: flex;
    align-items: center;

    gap: 12px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);
}

.floating-card strong {
    display: block;

    font-size: 13px;
}

.floating-card span {
    display: block;

    font-size: 11px;

    color: #777;
}

.floating-icon {
    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: #171717;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    border-top: 1px solid #dedbd4;
    border-bottom: 1px solid #dedbd4;

    background: #efede8;
}

.stats-container {
    width: min(1180px, 90%);
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stat-item {
    min-height: 120px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 20px;

    border-right: 1px solid #d9d5cd;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 22px;

    font-weight: 700;

    color: #b28a55;
}

.stat-item h3 {
    font-size: 14px;

    margin-bottom: 2px;
}

.stat-item p {
    font-size: 12px;

    color: #777;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section {
    padding: 130px 0;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading.center {
    text-align: center;

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;

    color: #a47b45;

    font-size: 11px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 18px;
}

.section-heading h2,
.vision-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 600;
}

.section-heading h2 span,
.vision-heading h2 span {
    color: #b28a55;
}

.section-heading p {
    color: #777;

    margin-top: 20px;

    font-size: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: #f7f6f2;
}

.about-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;

    padding: 25px;
}

.about-image-bg {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 85%;
    height: 90%;

    background: #e9dfd0;

    border-radius: 20px;
}

.about-image img {
    position: relative;

    width: 100%;
    max-width: 400px;

    height: 520px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow: 20px 25px 60px rgba(0, 0, 0, 0.12);
}

.about-content {
    max-width: 600px;
}

.large-text {
    font-family: "Playfair Display", serif;

    font-size: 25px;

    line-height: 1.45;

    margin-bottom: 25px;
}

.about-content p:not(.large-text) {
    color: #707070;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    font-size: 14px;

    font-weight: 700;

    border-bottom: 1px solid #171717;

    padding-bottom: 6px;

    transition: 0.3s;
}

.text-link:hover {
    color: #b28a55;

    border-color: #b28a55;

    gap: 15px;
}


/* =========================================================
   COMPANY
========================================================= */

.company {
    background: #eeece7;
}

.company-card {
    min-height: 520px;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    background: #171717;

    color: white;

    border-radius: 25px;

    overflow: hidden;
}

.company-card-content {
    padding: 70px;
}

.company-number {
    color: #b28a55;

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 700;
}

.company-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 65px;

    line-height: 1;

    margin: 35px 0 25px;

    letter-spacing: -3px;
}

.company-card h3 span {
    display: block;

    color: #b28a55;
}

.company-card-content p {
    max-width: 560px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 15px;
}

.company-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}

.company-tags span {
    border: 1px solid #444;

    padding: 9px 13px;

    border-radius: 50px;

    font-size: 11px;

    color: #ddd;
}

.company-tags i {
    color: #b28a55;

    margin-right: 5px;
}

.company-card-visual {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #423727 0,
            #211e1a 45%,
            #171717 70%
        );
}

.circle-decoration {
    position: absolute;

    border: 1px solid rgba(178, 138, 85, 0.25);

    border-radius: 50%;
}

.circle-one {
    width: 430px;
    height: 430px;
}

.circle-two {
    width: 300px;
    height: 300px;
}

.company-logo {
    position: relative;

    z-index: 2;

    text-align: center;
}

.logo-mark {
    width: 130px;
    height: 130px;

    border: 1px solid #b28a55;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;

    font-family: "Playfair Display", serif;

    font-size: 65px;

    color: #b28a55;
}

.logo-name {
    margin-top: 25px;
}

.logo-name strong {
    display: block;

    font-size: 17px;

    letter-spacing: 4px;
}

.logo-name span {
    color: #b28a55;

    font-size: 10px;

    letter-spacing: 5px;
}


/* =========================================================
   VISION
========================================================= */

.vision {
    background: #f7f6f2;
}

.vision-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
}

.vision-content > p {
    color: #707070;

    font-size: 17px;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 45px;
}

.vision-points {
    border-top: 1px solid #ddd9d1;
}

.vision-point {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid #ddd9d1;
}

.vision-point > span {
    color: #b28a55;

    font-size: 13px;

    font-weight: 700;
}

.vision-point h3 {
    font-size: 18px;

    margin-bottom: 5px;
}

.vision-point p {
    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {
    background: #171717;

    padding: 110px 0;
}

.quote-box {
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.quote-icon {
    color: #b28a55;

    font-size: 28px;

    margin-bottom: 25px;
}

blockquote {
    font-family: "Playfair Display", serif;

    color: white;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.3;

    letter-spacing: -1px;
}

.quote-author {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 35px;
}

.mini-profile {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    overflow: hidden;
}

.mini-profile img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.quote-author div:last-child {
    text-align: left;
}

.quote-author strong {
    display: block;

    color: white;

    font-size: 13px;
}

.quote-author span {
    display: block;

    color: #888;

    font-size: 11px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: #eeece7;
}

.contact-box {
    background: #e5ddd1;

    border-radius: 25px;

    padding: 75px;

    display: grid;

    grid-template-columns: 1fr 0.4fr;

    align-items: center;

    overflow: hidden;

    position: relative;
}

.contact-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.contact-content h2 span {
    display: block;

    color: #a17845;
}

.contact-content > p {
    max-width: 580px;

    color: #666;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 35px;
}

.contact-details {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.contact-details a {
    display: flex;

    align-items: center;

    gap: 13px;

    width: fit-content;
}

.contact-icon {
    width: 42px;
    height: 42px;

    background: #171717;

    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
}

.contact-details small {
    display: block;

    color: #777;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-details strong {
    display: block;

    font-size: 13px;
}

.contact-action {
    display: flex;

    align-items: center;
    justify-content: center;
}

.contact-circle {
    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: #171717;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 15px;

    transform: rotate(-10deg);

    transition: 0.4s;
}

.contact-circle:hover {
    transform: rotate(0deg) scale(1.05);
}

.contact-circle span {
    font-size: 11px;

    line-height: 1.4;

    text-align: center;

    letter-spacing: 2px;

    color: #ddd;
}

.contact-circle i {
    color: #b28a55;

    font-size: 20px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #171717;

    color: white;

    padding: 60px 0 25px;
}

.footer-top {
    display: grid;

    grid-template-columns: 1fr 1fr 0.5fr;

    align-items: center;

    gap: 30px;

    padding-bottom: 45px;

    border-bottom: 1px solid #333;
}

.footer-brand p {
    color: #888;

    font-size: 12px;

    margin-top: 10px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;

    font-size: 12px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #b28a55;
}

.footer-social {
    display: flex;

    justify-content: flex-end;

    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    border: 1px solid #333;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 12px;

    transition: 0.3s;
}

.footer-social a:hover {
    background: #b28a55;

    border-color: #b28a55;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;
}

.footer-bottom p {
    color: #666;

    font-size: 10px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero-content > * {
    animation: fadeUp 0.8s ease forwards;
}

.hero-content .hero-small {
    animation-delay: 0.1s;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content .hero-description {
    animation-delay: 0.3s;
}

.hero-content .hero-buttons {
    animation-delay: 0.4s;
}

.hero-image-area {
    animation: fadeUp 1s ease forwards;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr 0.8fr;

        gap: 30px;
    }

    .hero h1 {
        font-size: 75px;
    }

    .image-frame {
        width: 350px;
        height: 500px;
    }

    .hero-image-area {
        min-height: 550px;
    }

    .about-grid,
    .vision-grid {
        gap: 50px;
    }

    .company-card-content {
        padding: 50px;
    }

    .company-card h3 {
        font-size: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .nav-container {
        height: 75px;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {

        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;

        background: rgba(247, 246, 242, 0.98);

        backdrop-filter: blur(15px);

        padding: 25px;

        flex-direction: column;

        gap: 22px;

        transform: translateY(-150%);

        opacity: 0;

        transition: 0.35s;

        box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    }

    .nav-menu.active {
        transform: translateY(0);

        opacity: 1;
    }

    .nav-link {
        font-size: 15px;
    }


    /* HERO */

    .hero {
        padding: 110px 0 50px;
    }

    .hero-container {

        width: 90%;

        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;
    }

    .availability {
        margin-bottom: 22px;
    }

    .hero-small {
        margin-bottom: 15px;
    }

    .hero h1 {

        font-size: clamp(58px, 17vw, 85px);

        letter-spacing: -4px;
    }

    .hero-description {

        font-size: 15px;

        line-height: 1.7;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {

        justify-content: center;
    }

    .social-links {

        justify-content: center;

        margin-top: 30px;
    }

    .hero-image-area {

        min-height: 520px;

        margin-top: 10px;
    }

    .image-frame {

        width: 320px;
        height: 450px;
    }

    .image-glow {

        width: 380px;
        height: 380px;
    }

    .floating-card {

        bottom: 45px;

        left: 50%;

        transform: translateX(-50%);

        width: max-content;
    }


    /* STATS */

    .stats-container {

        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {

        min-height: 100px;

        border-bottom: 1px solid #d9d5cd;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-bottom: none;
    }

    .stat-item:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }


    /* SECTION */

    .section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2,
    .vision-heading h2 {

        font-size: 45px;

        letter-spacing: -1.5px;
    }


    /* ABOUT */

    .about-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-image {

        max-width: 400px;

        margin: auto;
    }

    .about-image img {

        height: 450px;
    }


    /* COMPANY */

    .company-card {

        grid-template-columns: 1fr;

        min-height: auto;
    }

    .company-card-content {

        padding: 45px 30px;
    }

    .company-card h3 {

        font-size: 52px;
    }

    .company-card-visual {

        min-height: 350px;
    }


    /* VISION */

    .vision-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* QUOTE */

    .quote-section {

        padding: 80px 0;
    }

    blockquote {

        font-size: 32px;
    }


    /* CONTACT */

    .contact-box {

        grid-template-columns: 1fr;

        padding: 50px 30px;

        gap: 50px;

        text-align: center;
    }

    .contact-content > p {

        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {

        align-items: center;
    }

    .contact-content h2 {

        font-size: 48px;
    }


    /* FOOTER */

    .footer-top {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-links {

        justify-content: center;
    }

    .footer-social {

        justify-content: center;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .hero h1 {
        font-size: 58px;
    }

    .hero-image-area {
        min-height: 470px;
    }

    .image-frame {
        width: 280px;
        height: 400px;
    }

    .image-glow {
        width: 330px;
        height: 330px;
    }

    .floating-card {
        bottom: 25px;

        padding: 12px 15px;
    }

    .floating-icon {
        width: 36px;
        height: 36px;
    }

    .stat-item {
        padding: 15px 10px;

        gap: 10px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-item h3 {
        font-size: 12px;
    }

    .stat-item p {
        font-size: 10px;
    }

    .section-heading h2,
    .vision-heading h2 {
        font-size: 38px;
    }

    .company-card h3 {
        font-size: 45px;
    }

    .company-card-visual {
        min-height: 300px;
    }

    .logo-mark {
        width: 105px;
        height: 105px;

        font-size: 52px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

}