/* ===== CSS Variables ===== */
:root {
    --primary: #FBC613;
    --primary-hover: #E5B40F;
    --primary-foreground: #1A1718;
    --background: #231F20;
    --surface: #2D282A;
    --border: #3A3436;
    --text-primary: #F5F5F5;
    --text-secondary: #A19D9E;
    --error: #FF4C4C;
    --success: #00E676;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 480px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.text-yellow {
    color: var(--primary);
}

.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-label {
    display: block;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .section-label {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
    }
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-primary);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(251, 198, 19, 0.1);
}

.btn-dark {
    background-color: var(--primary-foreground);
    color: var(--text-primary);
}

.btn-dark:hover {
    background-color: var(--surface);
}

.btn-dark-outline {
    background: transparent;
    border: 2px solid var(--primary-foreground);
    color: var(--primary-foreground);
}

.btn-dark-outline:hover {
    background-color: var(--primary-foreground);
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
}

.btn-text-pc {
    display: none;
}

@media (min-width: 1024px) {
    .btn-text-mobile {
        display: none;
    }

    .btn-text-pc {
        display: inline;
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(35, 31, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem;
}

@media (min-width: 640px) {
    .header-container {
        height: 4rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        height: 5rem;
    }
}

.logo-img {
    height: 2.25rem;
    width: auto;
}

@media (min-width: 640px) {
    .logo-img {
        height: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 3.25rem;
    }
}

.nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .nav {
        gap: 2rem;
    }
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    transition: color 0.3s ease;
}

@media (min-width: 1200px) {
    .nav-link {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }
}

.nav-link:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
    }
}

@media (min-width: 1200px) {
    .header-cta {
        padding: 0.625rem 1.5rem;
    }
}

.header-cta:hover {
    background-color: rgba(251, 198, 19, 0.1);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.25rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--primary);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 3.5rem;
}

@media (min-width: 640px) {
    .hero {
        min-height: 90vh;
        padding-top: 4rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(35, 31, 32, 0.95), rgba(35, 31, 32, 0.8), rgba(35, 31, 32, 0.4));
}

@media (min-width: 768px) {
    .hero-overlay {
        background: linear-gradient(to right, rgba(35, 31, 32, 0.95), rgba(35, 31, 32, 0.7), rgba(35, 31, 32, 0.3));
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 56rem;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 3rem 0;
    }
}

@media (min-width: 768px) {
    .hero-content {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 5rem 0;
    }
}

.hero-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-label {
        font-size: 0.875rem;
        letter-spacing: 0.2em;
        margin-bottom: 1.5rem;
    }
}

.hero-title {
    font-size: 2.35rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 90%;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
        max-width: 36rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: block;
    }
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--text-secondary);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(0.75rem);
        opacity: 0.5;
    }
}

/* ===== About ===== */
.about {
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.about-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(35, 31, 32, 0.9);
}

.about .container {
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.about-content .section-label,
.about-content .section-title {
    text-align: left;
}

.about-content .section-title {
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .about-content .section-title {
        margin-bottom: 1.5rem;
    }
}

.about-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 1rem;
    }
}

.about-text p {
    margin-bottom: 0.875rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .stats-grid {
        gap: 1rem;
    }
}

.stat-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-card {
        padding: 2rem;
    }
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.375rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ===== Services ===== */
.services {
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.service-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .service-card:hover {
        transform: translateY(-0.5rem);
    }
}

.service-image {
    position: relative;
    height: 9rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .service-image {
        height: 10rem;
    }
}

@media (min-width: 1024px) {
    .service-image {
        height: 12rem;
    }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--surface), transparent);
}

.service-icon {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 2rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .service-icon {
        font-size: 2.5rem;
        bottom: 1rem;
        left: 1rem;
    }
}

.service-content {
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .service-content {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .service-content {
        padding: 2rem;
    }
}

.service-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.875rem;
}

@media (min-width: 640px) {
    .service-desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .service-features li {
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
}

.service-features .bullet {
    color: var(--primary);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

@media (min-width: 640px) {
    .service-link {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
}

.service-link:hover {
    gap: 0.75rem;
}

/* ===== Why Us ===== */
.why-us {
    background-color: #1A1718;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.benefit-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .benefit-card {
        padding: 1.5rem;
    }
}

@media (min-width: 480px) {
    .benefit-large {
        grid-column: span 2;
    }
}

.benefit-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.benefit-title {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
    .benefit-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

.benefit-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .benefit-desc {
        font-size: 0.875rem;
    }
}

/* ===== Gallery ===== */
.gallery {
    background-color: var(--background);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-filters {
        margin-bottom: 2rem;
    }
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .filter-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.8125rem;
    }
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

@media (min-width: 640px) {
    .gallery-overlay {
        padding: 1.5rem;
    }
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--text-primary);
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .gallery-overlay h4 {
        font-size: 1rem;
    }
}

.gallery-overlay p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

@media (min-width: 640px) {
    .gallery-overlay p {
        font-size: 0.875rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--primary);
    padding: 3rem 0;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 6rem 0;
    }
}

.cta-title {
    font-size: 1.375rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-text {
    color: rgba(26, 23, 24, 0.8);
    font-size: 0.9375rem;
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .cta-text {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

/* ===== Contact ===== */
.contact {
    background-color: #1A1718;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .contact-subtitle {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background-color: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
    transition: border-color 0.3s ease;
}

@media (min-width: 640px) {
    .contact-card {
        padding: 1rem;
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.contact-card:not(.contact-card-static):hover {
    border-color: var(--primary);
}

.contact-card:not(.contact-card-static):hover .contact-value {
    color: var(--primary);
}

.contact-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .contact-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
}

.contact-icon i {
    font-size: 1rem;
    color: var(--primary-foreground);
}

@media (min-width: 640px) {
    .contact-icon i {
        font-size: 1.25rem;
    }
}

.contact-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

@media (min-width: 640px) {
    .contact-label {
        font-size: 0.8125rem;
    }
}

.contact-value {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    transition: color 0.3s ease;
    word-break: break-word;
}

@media (min-width: 640px) {
    .contact-value {
        font-size: 0.9375rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .contact-form {
        gap: 1.25rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

.contact-form label {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
    .contact-form label {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: none;
    min-height: 100px;
}

/* ===== Footer ===== */
.footer {
    background-color: #1A1718;
    border-top: 1px solid var(--border);
    padding: 2.5rem 0 1.5rem;
}

@media (min-width: 640px) {
    .footer {
        padding: 3rem 0 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    height: 2rem;
    width: auto;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .footer-logo {
        height: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    max-width: 20rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .footer-about p {
        font-size: 0.875rem;
    }
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {

    .footer-links li,
    .footer-contact li {
        margin-bottom: 0.75rem;
    }
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {

    .footer-links a,
    .footer-contact a,
    .footer-contact span {
        font-size: 0.875rem;
    }
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .footer-bottom p {
        font-size: 0.875rem;
    }
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: rgba(35, 31, 32, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.75rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
    }
}

.lightbox-close:hover {
    color: var(--primary);
}

#lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
}

@media (min-width: 640px) {
    .lightbox-caption {
        bottom: 2rem;
    }
}

.lightbox-caption h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .lightbox-caption h4 {
        font-size: 1.125rem;
    }
}

.lightbox-caption p {
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

@media (min-width: 640px) {
    .lightbox-caption p {
        font-size: 0.875rem;
    }
}

/* ===== Success Toast ===== */
.success-toast {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--success);
    color: var(--primary-foreground);
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 300;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
}

@media (min-width: 640px) {
    .success-toast {
        padding: 1rem 2rem;
        bottom: 2rem;
    }
}

.success-toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.success-toast i {
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .success-toast i {
        font-size: 1.5rem;
    }
}