* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "DM Sans", sans-serif;
    color: #1E1E1E;
}

body {
    background-color: #FAFAFA;
}

button {
    transition: all ease 350ms;
    cursor: pointer;
    font-family: "Roboto Mono", monospace;
    outline: none;
    font-weight: 400;
}

.highlight {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
}

a {
    font-family: "Roboto Mono", monospace;
}

section {
    padding-inline: 40px;
}

.container {
    margin: 0 auto;
    max-width: 1320px;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20px;
    z-index: 999999;
    transform: translateY(-100%);
    opacity: 0;
    animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #1E1E1E;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar .links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar .logo {
    cursor: pointer;
}

.navbar .links a {
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    color: #1E1E1E;
    transition: all ease 250ms;
}

.navbar .links a:hover {
    opacity: 66%;
}

.navbar .links a.active {
    border-bottom: 1px solid #1E1E1E;
    padding-bottom: 2px;
}

.navbar .links button {
    border-radius: 40px;
    background-color: #1E1E1E;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 20px;
    border: none;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .links button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #FFD600;
    z-index: -1;
    transition: height 0.3s ease;
}

.navbar .links button:hover::before {
    height: 100%;
}

.navbar .links button:hover {
    color: #000;
}

.navbar .links button:hover img {
    filter: invert(100);
}

/* Mobile menu — hidden on desktop */
.mobile-menu {
    display: none;
}

.menu {
    display: flex;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    padding: 150px 20px 0;
    flex-direction: column;
    gap: 20px;
    transition: all ease 500ms;
    transform: translateX(100%);
}

.menu a {
    font-size: 20px;
    line-height: 26px;
    transition: all ease 300ms;
    text-decoration: none;
}

.menu .menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(30, 30, 30, .1);
}

.menu button {
    background-color: #1E1E1E;
    color: #fff;
    border: none;
    padding: 16px 26px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── HERO ── */
.hero {
    background: url(../assets/bg/hero_bg_too.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 100px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.hero .caption {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
    color: rgba(30, 30, 30, .4);
    font-family: "Roboto Mono", monospace;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.2s;
}

.hero h1 {
    font-size: 95px;
    line-height: 110px;
    font-weight: 500;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.5s;
}

.hero p {
    max-width: 520px;
    font-size: 22px;
    line-height: 29px;
    margin-top: 20px;
    font-weight: 400;
    color: rgba(30, 30, 30, 0.7);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.8s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── CONTACT MAIN ── */
.contact-main {
    padding-top: 100px;
    padding-bottom: 140px;
}

.contact-main .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left info panel */
.contact-info {
    position: sticky;
    top: 120px;
}

.caption {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 20px;
    color: rgba(30, 30, 30, .4);
    font-family: "Roboto Mono", monospace;
}

.contact-info h2 {
    font-size: 60px;
    line-height: 72px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info .intro {
    font-size: 20px;
    line-height: 28px;
    color: rgba(30, 30, 30, 0.7);
    margin-bottom: 60px;
    max-width: 440px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.channel {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px dashed rgba(30, 30, 30, 0.2);
    text-decoration: none;
    transition: all ease 300ms;
    cursor: pointer;
}

.channel:first-child {
    border-top: 1px dashed rgba(30, 30, 30, 0.2);
}

.channel:hover .channel-icon {
    background-color: #FFD600;
    border-color: #FFD600;
}

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all ease 300ms;
}

.channel-icon svg {
    width: 20px;
    height: 20px;
}

.channel-text .label {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 16px;
    color: rgba(30, 30, 30, 0.4);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.channel-text .value {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #1E1E1E;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
}

/* Right form */
.contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(30, 30, 30, 0.12);
    border-radius: 20px;
    padding: 60px 50px;
}

.contact-form-wrap h3 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form-wrap .sub {
    font-size: 18px;
    line-height: 24px;
    color: rgba(30, 30, 30, 0.6);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.08em;
    color: rgba(30, 30, 30, 0.5);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(30, 30, 30, 0.15);
    border-radius: 10px;
    font-size: 18px;
    line-height: 24px;
    font-family: "DM Sans", sans-serif;
    color: #1E1E1E;
    background: #FAFAFA;
    outline: none;
    transition: border-color ease 250ms, background ease 250ms;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1E1E1E;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group.select-wrap {
    position: relative;
}

.form-group.select-wrap::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231E1E1E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    margin-top: 10px;
    width: 100%;
    background-color: #1E1E1E;
    color: #fff;
    border: none;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #FFD600;
    z-index: -1;
    transition: height 0.3s ease;
}

.form-submit:hover::before {
    height: 100%;
}

.form-submit:hover {
    color: #000;
}

.form-submit:hover img {
    filter: invert(100);
}

.form-submit img {
    height: 18px;
    padding-top: 2px;
}

/* success state */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form-success .check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #FFD600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 18px;
    line-height: 26px;
    color: rgba(30, 30, 30, 0.6);
}

/* ── LOCATION STRIP ── */
.location-strip {
    padding-top: 0;
    padding-bottom: 140px;
}

.location-strip .container {
    background: #1E1E1E;
    border-radius: 20px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.location-strip .left .caption {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

.location-strip .left h2 {
    font-size: 52px;
    line-height: 64px;
    font-weight: 500;
    color: #fff;
    max-width: 420px;
}

.location-strip .left h2 .highlight {
    color: #fff;
}

.location-strip .left p {
    margin-top: 16px;
    font-size: 20px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 380px;
}

.location-strip .right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 320px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.location-item .loc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-item .loc-icon svg {
    width: 18px;
    height: 18px;
}

.location-item .loc-text .loc-label {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
    letter-spacing: 0.06em;
}

.location-item .loc-text .loc-value {
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
}

/* ── FOOTER ── */
.footer {
    background-color: #1E1E1E;
    padding-top: 120px;
    padding-bottom: 40px;
}

.footer .main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.footer .col.double {
    grid-column: span 2;
}

.footer .col .footer-logo {
    display: block;
    margin-bottom: 50px;
}

.footer .col .media {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.footer .col .media .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all ease 300ms;
}

.footer .col .media .icon:hover {
    background-color: #F3C403;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 20px;
    line-height: 26px;
    transition: all ease 300ms;
    text-decoration: none;
}

.footer-links span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.50);
}

.footer .col .footer-links a {
    color: rgba(255, 255, 255, 0.70);
}

.footer .col .footer-links a:hover {
    color: #F3C403;
}

.footer .col.double .footer-links a {
    color: rgba(255, 255, 255, 1);
}

.footer .col.double .footer-links a:hover {
    color: #F3C403;
}

.footer .col h3 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    font-family: "Roboto Mono", monospace;
    color: #fff;
}

.copyright {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.copyright a {
    font-size: 16px;
    line-height: 22px;
    transition: all ease 300ms;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.70);
}

.copyright a:hover {
    color: #fff;
}


/* ================================================================
   RESPONSIVE BREAKPOINTS — matching index.css system exactly
   1200px → 980px → 850px → 650px → 400px
   ================================================================ */

/* ── 1200px ── */
@media screen and (max-width: 1200px) {
    .contact-main .container {
        gap: 50px;
    }

    .location-strip .container {
        padding: 50px;
        gap: 30px;
    }

    .location-strip .left h2 {
        font-size: 42px;
        line-height: 54px;
    }

    .location-strip .right {
        min-width: 280px;
    }
}

/* ── 980px ── */
@media screen and (max-width: 980px) {

    /* Hero */
    .hero h1 {
        font-size: 65px;
        line-height: 80px;
    }

    /* Contact main — stack columns */
    .contact-main .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Unstick the info panel when stacked */
    .contact-info {
        position: static;
    }

    .contact-info h2 {
        font-size: 45px;
        line-height: 58px;
    }

    .contact-info .intro {
        max-width: 100%;
        margin-bottom: 40px;
    }

    /* Location strip — stack */
    .location-strip .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 40px;
    }

    .location-strip .left h2 {
        font-size: 38px;
        line-height: 50px;
        max-width: 100%;
    }

    .location-strip .right {
        min-width: 0;
        width: 100%;
    }

    /* Footer */
    .footer .main {
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
    }

    .footer .col.double {
        grid-column: span 1;
    }

    .footer .col .footer-logo {
        margin-bottom: 30px;
    }

    .footer .col .media {
        margin-top: 30px;
    }
}

/* ── 850px — hamburger breakpoint ── */
@media screen and (max-width: 850px) {

    /* Hide desktop nav, show hamburger */
    .navbar .links {
        display: none;
    }

    .mobile-menu {
        display: flex;
        width: 50px;
        height: 50px;
        min-width: 50px;
        max-width: 50px;
        overflow: hidden;
        border-radius: 50px;
    }

    .mobile-menu .open {
        width: 50px;
        min-width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #1E1E1E;
        transition: all ease 450ms;
    }

    .mobile-menu .close {
        width: 50px;
        min-width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #F3C403;
        transition: all ease 450ms;
    }

    /* Hero */
    .hero {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 50px;
        line-height: 64px;
    }

    .hero p {
        font-size: 18px;
        line-height: 26px;
    }

    /* Contact main */
    .contact-main {
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .contact-form-wrap {
        padding: 40px 36px;
    }

    /* Location strip */
    .location-strip {
        padding-bottom: 100px;
    }

    .location-strip .container {
        padding: 40px 30px;
        border-radius: 16px;
    }

    .location-strip .left h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .location-strip .left p {
        font-size: 18px;
        line-height: 26px;
    }

    /* Footer */
    .footer {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .footer .col .footer-logo {
        width: 180px;
    }
}

/* ── 650px ── */
@media screen and (max-width: 650px) {

    section {
        padding-inline: 20px;
    }

    .caption {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 18px;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 52px;
    }

    .hero p {
        font-size: 18px;
        line-height: 26px;
        margin-top: 14px;
    }

    /* Contact info */
    .contact-info h2 {
        font-size: 36px;
        line-height: 46px;
    }

    .contact-info .intro {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .channel {
        padding: 24px 0;
        gap: 18px;
    }

    .channel-text .value {
        font-size: 17px;
        line-height: 22px;
    }

    /* Form */
    .contact-form-wrap {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .contact-form-wrap h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .contact-form-wrap .sub {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    /* Stack first/last name row on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
    }

    .form-submit {
        font-size: 16px;
        padding: 18px 24px;
    }

    /* Location strip */
    .location-strip {
        padding-bottom: 80px;
    }

    .location-strip .container {
        padding: 32px 24px;
        gap: 30px;
        border-radius: 14px;
    }

    .location-strip .left h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .location-strip .left p {
        font-size: 16px;
        line-height: 24px;
    }

    .location-item {
        padding: 16px 18px;
    }

    .location-item .loc-text .loc-value {
        font-size: 16px;
        line-height: 22px;
    }

    /* Footer */
    .footer .main {
        gap: 40px;
    }

    .footer-links a {
        font-size: 18px;
        line-height: 24px;
    }

    .footer .col h3 {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 28px;
    }

    .copyright {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }
}

/* ── 400px ── */
@media screen and (max-width: 400px) {

    .hero h1 {
        font-size: 34px;
        line-height: 44px;
    }

    .hero p {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-info h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .contact-form-wrap {
        padding: 24px 18px;
    }

    .contact-form-wrap h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .channel-icon {
        width: 44px;
        height: 44px;
    }

    .channel-icon svg {
        width: 17px;
        height: 17px;
    }

    .location-strip .container {
        padding: 28px 20px;
    }

    .location-strip .left h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .location-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .location-item .loc-icon {
        width: 34px;
        height: 34px;
    }

    .location-item .loc-text .loc-value {
        font-size: 15px;
    }

    .form-submit {
        font-size: 15px;
        padding: 16px 20px;
    }
}