/* ============================================
   CONCEPT 6: LUXURY / PREMIUM
   Color: Black + Gold (#c9a449)
   Style: Elegant, Sophisticated, High-end
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, li {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Noto Sans KR', serif;
    font-weight: 600;
    line-height: 1.2;
}

em {
    font-style: normal;
    color: #c9a449;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 164, 73, 0.2);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #c9a449;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* GNB */
.gnb-menu {
    display: flex;
    gap: 50px;
}

.gnb-item {
    position: relative;
}

.gnb-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    position: relative;
}

.gnb-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a449;
    transition: width 0.4s;
}

.gnb-link:hover {
    color: #c9a449;
}

.gnb-link:hover::after {
    width: 100%;
}

/* Submenu */
.gnb-sub {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 220px;
    padding: 20px 0;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(201, 164, 73, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.gnb-item:hover .gnb-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gnb-sub li a {
    display: block;
    padding: 12px 25px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.gnb-sub li a:hover {
    color: #c9a449;
    background: rgba(201, 164, 73, 0.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 1px;
    background: #c9a449;
    transition: all 0.3s;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23c9a449" fill-opacity="0.03" x="0" y="0" width="50" height="50"/><rect fill="%23c9a449" fill-opacity="0.03" x="50" y="50" width="50" height="50"/></svg>');
    background-size: cover, 80px 80px;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-label span:not(.line) {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
}

.hero-label .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a449);
}

.hero-label .line:last-child {
    background: linear-gradient(90deg, #c9a449, transparent);
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}

.title-line.accent {
    color: #c9a449;
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #c9a449;
    color: #0a0a0a;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
}

.btn-primary:hover {
    background: #d4b35a;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 164, 73, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s;
}

.btn-outline:hover {
    border-color: #c9a449;
    color: #c9a449;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, #c9a449, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.about-preview {
    padding: 150px 0;
    background: #0a0a0a;
}

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

.about-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    z-index: 2;
}

.visual-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(201, 164, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a449;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 8px;
}

.visual-accent {
    position: absolute;
    top: 40px;
    left: 40px;
    right: -40px;
    bottom: -40px;
    border: 1px solid rgba(201, 164, 73, 0.3);
    z-index: 1;
}

.about-content .section-title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #c9a449;
}

.stat-number em {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a449;
}

.btn-text svg {
    transition: transform 0.4s;
}

.btn-text:hover svg {
    transform: translateX(5px);
}

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

.services {
    padding: 150px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(201, 164, 73, 0.2);
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 60px 50px;
    background: #0a0a0a;
    position: relative;
    transition: all 0.5s;
}

.service-card:hover {
    background: #0f0f0f;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 164, 73, 0.2);
    line-height: 1;
    margin-bottom: 30px;
    transition: color 0.4s;
}

.service-card:hover .service-number {
    color: rgba(201, 164, 73, 0.4);
}

.service-content h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.service-arrow {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 1.5rem;
    color: #c9a449;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   PORTFOLIO PREVIEW
   ============================================ */

.portfolio-preview {
    padding: 150px 0;
    background: #0a0a0a;
}

.portfolio-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.portfolio-main {
    position: relative;
}

.portfolio-image-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(201, 164, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a449;
    font-size: 0.9rem;
    letter-spacing: 5px;
}

.portfolio-info {
    padding: 30px 0;
}

.portfolio-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 15px;
}

.portfolio-info h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-item {
    padding: 35px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s;
}

.portfolio-item:hover {
    padding-left: 20px;
    border-color: rgba(201, 164, 73, 0.3);
}

.item-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #c9a449;
    margin-bottom: 10px;
    display: block;
}

.portfolio-item h5 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.item-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    padding: 5px 12px;
    background: rgba(201, 164, 73, 0.1);
    border: 1px solid rgba(201, 164, 73, 0.2);
}

.portfolio-cta {
    text-align: center;
}

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

.contact-cta {
    padding: 150px 0;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, transparent 50%),
        linear-gradient(315deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0f0f0f;
    text-align: center;
}

.cta-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

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

.footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(201, 164, 73, 0.2);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: #c9a449;
}

.footer-logo span:last-child {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
}

.footer-brand p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #c9a449;
    margin-bottom: 25px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li,
.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

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

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .title-line {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .visual-accent {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .gnb {
        display: none;
    }

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

    .title-line {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

/* ============================================
   PAGE STYLES
   ============================================ */

/* About Hero */
.about-hero {
    padding: 180px 0 100px;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0a0a0a;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 30px;
}

.about-label::before,
.about-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c9a449;
}

.about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

/* About Greeting */
.about-greeting {
    padding: 120px 0;
    background: #0a0a0a;
}

.greeting-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.greeting-visual {
    position: relative;
}

.greeting-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(201, 164, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a449;
    font-size: 0.9rem;
    letter-spacing: 5px;
}

.greeting-quote {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #c9a449;
    color: #0a0a0a;
    padding: 35px;
    max-width: 220px;
}

.quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.3;
    display: block;
    margin-bottom: -25px;
}

.greeting-quote p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.quote-source {
    font-size: 0.8rem;
    opacity: 0.7;
}

.greeting-text-wrap {
    padding-top: 30px;
}

.greeting-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #c9a449;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(201, 164, 73, 0.3);
}

.greeting-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 2;
    margin-bottom: 20px;
}

.greeting-text strong {
    color: #c9a449;
}

.greeting-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-position {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.signature-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Mission Section */
.about-mission {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0f0f0f;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: #0a0a0a;
    padding: 60px 50px;
    border: 1px solid rgba(201, 164, 73, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.4s;
}

.mission-card:hover {
    border-color: #c9a449;
    transform: translateY(-5px);
}

.mission-card-header {
    margin-bottom: 30px;
}

.mission-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.mission-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #c9a449;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.mission-card .mission-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
}

.mission-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c9a449 0%, transparent 100%);
}

/* Values Section */
.about-values {
    padding: 120px 0;
    background: #0a0a0a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 35px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.value-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(201, 164, 73, 0.3);
    line-height: 1;
    margin-bottom: 20px;
}

.value-content h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.value-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* History Section */
.about-history {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0f0f0f;
}

.history-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.history-header {
    position: sticky;
    top: 120px;
}

.history-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-top: 25px;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-history .timeline-item {
    display: flex;
    gap: 40px;
    padding: 35px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.about-history .timeline-item:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.about-history .timeline-item.highlight {
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, #0a0a0a 100%);
    border-color: rgba(201, 164, 73, 0.3);
}

.timeline-marker .timeline-year {
    display: inline-block;
    padding: 10px 20px;
    background: #c9a449;
    color: #0a0a0a;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-events li {
    display: flex;
    gap: 15px;
}

.event-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a449;
    min-width: 35px;
}

.event-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Organization Section */
.about-organization {
    padding: 120px 0;
    background: #0a0a0a;
}

.org-chart-modern {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.org-level.ceo {
    margin-bottom: 20px;
}

.org-level.divisions {
    margin-bottom: 20px;
}

.org-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 40px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.org-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.org-card.ceo-card {
    background: #c9a449;
    border-color: #c9a449;
    padding: 30px 60px;
}

.org-card.ceo-card .org-title {
    color: #0a0a0a;
}

.org-card .org-icon {
    font-size: 1.5rem;
}

.org-card .org-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.org-card.division-card {
    background: #0a0a0a;
    border-color: rgba(201, 164, 73, 0.3);
}

.org-card.division-card .org-title {
    color: #c9a449;
}

.org-card.dept-card {
    padding: 15px 25px;
    background: #0f0f0f;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.org-connector-vertical {
    width: 1px;
    height: 40px;
    background: #c9a449;
    margin: 10px 0;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-hero {
    padding: 180px 0 80px;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0a0a0a;
}

.services-hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 25px;
}

.services-label::before,
.services-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c9a449;
}

.services-hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 40px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.service-nav-item:hover {
    border-color: #c9a449;
    transform: translateY(-5px);
}

.service-nav-item .nav-icon {
    font-size: 1.8rem;
}

.service-nav-item .nav-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

/* Service Detail Section */
.service-detail-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.service-detail-section.alt {
    background: #0f0f0f;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(201, 164, 73, 0.2);
    line-height: 1;
}

.service-detail-title h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.service-detail-title p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-info-card {
    padding: 40px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.service-detail-section.alt .service-info-card {
    background: #0a0a0a;
}

.service-info-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.service-info-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-info-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.service-info-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.service-features-bar {
    display: flex;
    background: #c9a449;
}

.feature-bar-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(10, 10, 10, 0.2);
}

.feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 5px;
}

.feature-bar-desc {
    font-size: 0.8rem;
    color: rgba(10, 10, 10, 0.7);
}

/* Environment Analysis Grid */
.env-analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.env-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.4s;
}

.env-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
    transform: translateY(-5px);
}

.env-card-visual {
    padding: 50px;
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, transparent 100%);
    text-align: center;
}

.env-icon {
    font-size: 2.5rem;
}

.env-card-content {
    padding: 30px;
}

.env-card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.env-card-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.env-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 164, 73, 0.1);
    color: #c9a449;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(201, 164, 73, 0.3);
}

/* Legal Notice */
.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #0a0a0a;
    border-left: 3px solid #c9a449;
}

.legal-icon {
    font-size: 1.8rem;
}

.legal-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #c9a449;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

/* Certification Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.cert-card {
    padding: 35px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.4s;
}

.cert-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.cert-card.main {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, #0f0f0f 100%);
}

.cert-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    background: #c9a449;
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.cert-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    padding-right: 60px;
}

.cert-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.cert-requirement {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cert-requirement span {
    padding: 8px 14px;
    background: rgba(201, 164, 73, 0.1);
    color: #c9a449;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(201, 164, 73, 0.2);
}

/* Architecture Section */
.architecture-content {
    margin-top: 40px;
}

.architecture-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.architecture-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(201, 164, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a449;
    font-size: 0.9rem;
    letter-spacing: 5px;
}

.architecture-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #c9a449;
    margin-bottom: 25px;
}

.architecture-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: 15px;
}

.architecture-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.arch-feature {
    padding: 35px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.4s;
}

.arch-feature:hover {
    border-color: rgba(201, 164, 73, 0.3);
    transform: translateY(-5px);
}

.arch-feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.arch-feature h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.arch-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: #c9a449;
    text-align: center;
}

.services-cta .cta-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.services-cta .cta-content p {
    font-size: 1rem;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #0a0a0a;
    color: #c9a449;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Contact Hero */
.contact-hero {
    padding: 180px 0 80px;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0a0a0a;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 25px;
}

.contact-label::before,
.contact-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c9a449;
}

.contact-hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-box {
    padding: 40px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.contact-info-box:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.contact-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #c9a449;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.map-container {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.map-tab {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.map-tab:hover {
    color: #fff;
}

.map-tab.active {
    color: #c9a449;
    background: rgba(201, 164, 73, 0.1);
}

.map-placeholder {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.map-info {
    text-align: center;
    max-width: 400px;
}

.map-icon {
    margin-bottom: 25px;
}

.map-icon svg {
    color: #c9a449;
}

.map-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.map-address {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 5px;
}

.map-directions {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.map-directions p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

.map-directions strong {
    color: #c9a449;
}

.map-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #c9a449;
    color: #0a0a0a;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.map-link:hover {
    background: #d4b35a;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

.portfolio-hero {
    padding: 180px 0 80px;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0a0a0a;
}

.portfolio-hero-content {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 25px;
}

.portfolio-label::before,
.portfolio-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c9a449;
}

.portfolio-hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.portfolio-hero > .container > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #c9a449;
    color: #c9a449;
}

.filter-btn.active {
    background: #c9a449;
    border-color: #c9a449;
    color: #0a0a0a;
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.4s;
}

.portfolio-item:hover {
    border-color: rgba(201, 164, 73, 0.3);
    transform: translateY(-5px);
}

.portfolio-item.featured {
    grid-column: span 2;
}

.portfolio-item.featured .portfolio-image {
    height: 350px;
}

.portfolio-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a449;
    font-size: 0.85rem;
    letter-spacing: 3px;
    transition: all 0.4s;
}

.portfolio-item:hover .portfolio-image-placeholder {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.portfolio-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #c9a449;
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.portfolio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.portfolio-partner {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.portfolio-partner strong {
    color: rgba(255,255,255,0.7);
    margin-right: 5px;
}

.portfolio-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c9a449;
    padding: 5px 12px;
    background: rgba(201, 164, 73, 0.1);
    border: 1px solid rgba(201, 164, 73, 0.2);
}

.portfolio-load-more {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    padding: 16px 50px;
    background: transparent;
    border: 1px solid #c9a449;
    color: #c9a449;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: #c9a449;
    color: #0a0a0a;
}

/* Stats Section */
.stats-section {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0f0f0f;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    padding: 40px 30px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: all 0.4s;
}

.stat-box:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.stat-box .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #c9a449;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-number span {
    font-size: 1.5rem;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* Stats Timeline */
.stats-timeline {
    position: relative;
}

.timeline-track {
    position: relative;
    padding-left: 30px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, #c9a449 0%, rgba(201, 164, 73, 0.2) 100%);
}

.stats-timeline .timeline-item {
    position: relative;
    padding-bottom: 35px;
}

.stats-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.stats-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #c9a449;
}

.stats-timeline .timeline-year {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a0a0a;
    background: #c9a449;
    padding: 5px 15px;
    margin-bottom: 12px;
}

.stats-timeline .timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.stats-timeline .timeline-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Clients Section */
.clients-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.client-group {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    transition: all 0.4s;
}

.client-group:hover {
    border-color: rgba(201, 164, 73, 0.2);
}

.client-group-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.client-icon {
    font-size: 1.3rem;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
    cursor: pointer;
}

.client-logo-item:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.client-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(201, 164, 73, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a449;
    transition: all 0.4s;
}

.client-logo-item:hover .client-logo-placeholder {
    background: #c9a449;
    color: #0a0a0a;
}

.client-logo-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

.support-hero {
    padding: 180px 0 80px;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0a0a0a;
    text-align: center;
}

.support-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a449;
    margin-bottom: 25px;
}

.support-label::before,
.support-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #c9a449;
}

.support-hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}

.support-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

/* Law Section */
.law-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.law-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.law-category-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    transition: all 0.4s;
}

.law-category-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.law-category-card.highlight {
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, #0f0f0f 100%);
}

.law-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.law-category-icon {
    font-size: 1.5rem;
}

.law-category-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.law-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.law-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.law-links li a:hover {
    background: #c9a449;
    border-color: #c9a449;
}

.law-link-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.law-links li a:hover .law-link-title {
    color: #0a0a0a;
}

.law-link-arrow {
    font-size: 1rem;
    color: #c9a449;
    transition: all 0.3s;
}

.law-links li a:hover .law-link-arrow {
    color: #0a0a0a;
}

/* Inquiry Section */
.inquiry-section {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(201, 164, 73, 0.05) 0%, transparent 50%),
        #0f0f0f;
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.inquiry-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.inquiry-info > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.inquiry-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquiry-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}

.inquiry-contact-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
}

.inquiry-contact-card .contact-icon {
    font-size: 1.3rem;
}

.inquiry-contact-card .contact-detail {
    display: flex;
    flex-direction: column;
}

.inquiry-contact-card .contact-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 5px;
}

.inquiry-contact-card .contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.inquiry-notice {
    margin-top: 30px;
    padding: 20px;
    background: rgba(201, 164, 73, 0.1);
    border-left: 3px solid #c9a449;
}

.inquiry-notice p {
    font-size: 0.85rem;
    color: #c9a449;
    margin: 0;
}

/* Inquiry Form */
.inquiry-form-wrap {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
}

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

.inquiry-form .form-group {
    margin-bottom: 0;
}

.inquiry-form .form-group.full {
    grid-column: span 2;
}

.inquiry-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 15px 18px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #c9a449;
}

.inquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}

.inquiry-form .btn-submit {
    width: 100%;
    padding: 18px;
    background: #c9a449;
    color: #0a0a0a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 20px;
}

.inquiry-form .btn-submit:hover {
    background: #d4b35a;
}

/* News Section */
.news-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.4s;
}

.news-card:hover {
    border-color: rgba(201, 164, 73, 0.3);
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(201, 164, 73, 0.1) 0%, #0f0f0f 100%);
}

.news-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: #c9a449;
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-card-badge.news {
    background: #4a90c2;
}

.news-card-badge.hire {
    background: #c25a5a;
}

.news-card-content {
    padding: 60px 30px 35px;
}

.news-card-date {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.news-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 12px;
}

.news-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card.featured h4 {
    font-size: 1.2rem;
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    border-color: #c9a449;
    color: #c9a449;
}

.pagination-btn.active {
    background: #c9a449;
    border-color: #c9a449;
    color: #0a0a0a;
}

.pagination-btn.next {
    width: auto;
    padding: 0 20px;
}

/* ============================================
   RESPONSIVE FOR ALL PAGES
   ============================================ */

@media (max-width: 1024px) {
    .greeting-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .greeting-quote {
        position: static;
        max-width: 100%;
        margin-top: 20px;
    }

    .mission-wrapper {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .history-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-header {
        position: static;
    }

    .services-nav {
        gap: 15px;
    }

    .service-nav-item {
        padding: 25px 30px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .env-analysis-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .cert-card.main {
        grid-column: span 1;
    }

    .architecture-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .architecture-features {
        grid-template-columns: 1fr;
    }

    .service-features-bar {
        flex-direction: column;
    }

    .feature-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(10, 10, 10, 0.2);
    }

    .feature-bar-item:last-child {
        border-bottom: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.featured {
        grid-column: span 2;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .law-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero,
    .contact-hero,
    .portfolio-hero,
    .support-hero {
        padding: 140px 0 60px;
    }

    .about-hero-title,
    .services-hero h2,
    .contact-hero h2,
    .portfolio-hero h2,
    .support-hero h2 {
        font-size: 2.5rem;
    }

    .about-greeting,
    .about-mission,
    .about-values,
    .about-history,
    .about-organization {
        padding: 80px 0;
    }

    .greeting-title {
        font-size: 1.5rem;
    }

    .mission-card {
        padding: 40px 30px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .about-history .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }

    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-card {
        width: 100%;
        max-width: 250px;
    }

    .services-nav {
        flex-direction: column;
        align-items: center;
    }

    .service-nav-item {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        justify-content: center;
    }

    .service-detail-section {
        padding: 80px 0;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-detail-title h3 {
        font-size: 1.5rem;
    }

    .service-info-card {
        padding: 30px 25px;
    }

    .services-cta {
        padding: 80px 0;
    }

    .services-cta .cta-content h3 {
        font-size: 2rem;
    }

    .portfolio-masonry {
        grid-template-columns: 1fr;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .portfolio-item.featured .portfolio-image {
        height: 250px;
    }

    .stats-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .stat-box .stat-number {
        font-size: 2.5rem;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .client-logo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 0.75rem;
    }

    .law-category-card {
        padding: 30px 25px;
    }

    .inquiry-info h2 {
        font-size: 2rem;
    }

    .inquiry-form-wrap {
        padding: 30px 25px;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-form .form-group.full {
        grid-column: span 1;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .news-card.featured h4 {
        font-size: 1.05rem;
    }
}
