/* ============================================
   WRT | WE ARE THE AD — Main Stylesheet
   ============================================ */

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

:root {
    --black:       #080808;
    --dark:        #111111;
    --dark2:       #181818;
    --dark3:       #222222;
    --white:       #ffffff;
    --off-white:   #e8e8e8;
    --gray:        #888888;
    --gray-light:  #cccccc;
    --gold:        #c8a96e;
    --gold-light:  #dfc089;
    --border:      rgba(255, 255, 255, 0.08);
    --border-gold: rgba(200, 169, 110, 0.3);

    --serif:  'Cormorant Garamond', Georgia, serif;
    --sans:   'Noto Sans KR', sans-serif;
    --eng:    'Montserrat', sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ---------- Typography helpers ---------- */
.section-eyebrow {
    font-family: var(--eng);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 48px;
}

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--eng);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-white {
    background: var(--white);
    color: #000;
}
.btn-white:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ---------- GSAP 초기 상태 (JS가 제어) ---------- */
.reveal { opacity: 1; transform: none; }

/* ---------- Split Text ---------- */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.word-inner {
    display: inline-block;
    will-change: transform;
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    margin-left: -250px;
    margin-top: -250px;
    transform: translate(-999px, -999px);
}

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 28px 0;
    transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    padding: 16px 0;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo a {
    display: block;
    width: 200px;
    height: 48px;
    background: url('../assets/logo.png') center / 110% auto no-repeat;
    filter: brightness(0) invert(1);
}

.logo-img {
    display: none;
}

.logo-fallback {
    display: none;
    flex-direction: column;
    gap: 3px;
}

.logo-main {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--white);
    line-height: 1;
}

.logo-sub {
    font-family: var(--eng);
    font-size: 7px;
    letter-spacing: 3.5px;
    color: var(--gray);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-menu li a {
    font-family: var(--eng);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gray-light);
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease-out);
}

.nav-menu li a:hover {
    color: var(--white);
}
.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 11px 28px;
    background: var(--gold);
    color: #000 !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    transition: background 0.3s ease, transform 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light) !important;
    color: #000 !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.35s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 28px; right: 48px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.3s;
}
.mobile-close:hover { color: var(--white); }

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    font-family: var(--serif);
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}
.mobile-link:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 60%, rgba(200, 169, 110, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200, 169, 110, 0.04) 0%, transparent 60%),
        linear-gradient(160deg, #0f0f0f 0%, #080808 60%, #0a0905 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-eyebrow {
    font-family: var(--eng);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 7px;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    opacity: 0;
}
.hero-title .line2 {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.45);
}

.hero-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 48px;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 44px; right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
    opacity: 0;
}

.scroll-text {
    font-family: var(--eng);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gray);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-bar {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
}

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

.stat-item {
    padding: 24px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--eng);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-unit {
    font-family: var(--eng);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 8px;
    margin-left: 2px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    padding: 130px 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    position: relative;
    background: var(--black);
    padding: 52px 44px 44px;
    overflow: hidden;
    transition: background 0.4s ease;
}

.service-card:hover {
    background: var(--dark);
}

.service-line {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--gold), transparent);
    transition: width 0.5s var(--ease-out);
}
.service-card:hover .service-line {
    width: 100%;
}

.service-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    margin-bottom: 28px;
    transition: transform 0.4s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-icon svg { width: 100%; height: 100%; }

.service-num {
    position: absolute;
    top: 20px; right: 20px;
    font-family: var(--eng);
    font-size: 52px;
    font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    user-select: none;
    transition: color 0.4s ease;
}
.service-card:hover .service-num {
    color: rgba(200, 169, 110, 0.06);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.85;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-section {
    padding: 130px 0;
    background: var(--dark);
}

.portfolio-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 56px;
}

.filter-btn {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray);
    font-family: var(--eng);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

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

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

.portfolio-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover .portfolio-bg {
    transform: scale(1.06);
}

.portfolio-tag-bg {
    font-family: var(--eng);
    font-size: 11px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.08);
    font-weight: 800;
    font-size: 32px;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-cat {
    font-family: var(--eng);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portfolio-overlay h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.portfolio-result {
    font-size: 13px;
    color: var(--gray-light);
}
.portfolio-result strong { color: var(--gold); }

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    padding: 130px 0;
    background: var(--black);
}

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

.about-visual {
    position: relative;
    height: 440px;
}

.about-logo-box {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid var(--border);
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-wrt {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 600;
    letter-spacing: 10px;
    color: var(--white);
    line-height: 1;
}

.about-tagline {
    font-family: var(--eng);
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--gray);
    text-transform: uppercase;
}

.about-badge {
    position: absolute;
    border: 1px solid var(--border-gold);
    background: var(--dark2);
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.badge-1 { top: 12px; right: 0; }
.badge-2 { bottom: 12px; left: 0; }

.badge-num {
    font-family: var(--eng);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.badge-txt {
    font-size: 12px;
    color: var(--gray);
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-desc {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.95;
    margin-bottom: 20px;
}
.about-desc strong { color: var(--white); font-weight: 700; }

.about-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--gray-light);
}

.dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200, 169, 110, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #100e08 0%, #0a0a0a 50%, #0d0c08 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-family: var(--eng);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 22px;
}

.cta-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 48px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: 130px 0;
    background: var(--dark);
}

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

.contact-item {
    margin-bottom: 36px;
}

.ci-label {
    display: block;
    font-family: var(--eng);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 14.5px;
    color: var(--gray-light);
    line-height: 1.7;
}

.contact-sns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.sns-btn {
    font-family: var(--eng);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
    transition: color 0.3s ease;
    align-self: flex-start;
}
.sns-btn:hover { color: var(--gold); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group { flex: 1; }

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--sans);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

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

/* 전화번호 */
.tel-wrap {
    display: flex;
    align-items: stretch;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.tel-prefix-select {
    flex-shrink: 0;
    width: auto !important;
    border: none !important;
    border-right: 1px solid var(--border) !important;
    border-radius: 4px 0 0 4px !important;
    padding: 0 28px 0 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    color: var(--light) !important;
    background-color: rgba(255,255,255,0.03) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    cursor: pointer;
}

.tel-wrap input {
    border: none !important;
    background: transparent !important;
    flex: 1;
    min-width: 0;
}

/* 이메일 */
.email-wrap {
    display: flex;
    align-items: stretch;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.email-at {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--gray);
    font-size: 14px;
    flex-shrink: 0;
}

.email-wrap input {
    border: none !important;
    background: transparent !important;
}

.email-wrap #emailId {
    flex: 1;
    min-width: 0;
}

.email-domain-wrap {
    flex-shrink: 0;
    border-left: 1px solid var(--border);
    display: flex;
    align-items: stretch;
}

.email-domain-wrap select {
    width: auto !important;
    border: none !important;
    border-radius: 0 4px 4px 0 !important;
    padding: 0 36px 0 14px !important;
    font-size: 13px !important;
    color: var(--gray) !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    cursor: pointer;
}

.email-direct {
    display: flex;
    align-items: center;
}

.email-direct input {
    width: 130px;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 8px 0 14px !important;
}

.email-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 12px;
    padding: 0 14px 0 4px;
    cursor: pointer;
    transition: color 0.2s;
}

.email-reset-btn:hover {
    color: var(--light);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    .email-wrap #emailId,
    .email-domain-input {
        font-size: 13px;
        padding: 14px 10px;
    }
    .tel-prefix {
        padding: 0 14px;
        font-size: 14px;
    }
    .email-domain-select {
        padding: 0 28px 0 10px !important;
        font-size: 11px !important;
    }
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
    color: var(--gray);
}
.contact-form select:focus { color: var(--white); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form option {
    background: var(--dark);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 36px 0 28px;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-top {
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-logo {
    width: 200px;
    height: 48px;
    background: url('../assets/logo.png') center / 110% auto no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    margin: 0 auto;
}

.footer-logo-img {
    display: none;
}
.footer-logo-text {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--white);
    opacity: 0.7;
}

.footer-tagline {
    font-family: var(--eng);
    font-size: 8px;
    letter-spacing: 6px;
    color: var(--gray);
    text-transform: uppercase;
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 36px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-info p {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

.footer-copy {
    font-family: var(--eng);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    font-size: 11px;
    color: var(--gray);
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container { padding: 0 36px; }
    .nav-container { padding: 0 36px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

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

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

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-container { padding: 0 24px; }
    .hero-scroll-indicator { right: 24px; }
    .mobile-close { right: 24px; }

    .nav-menu { display: none; }
    .hamburger { display: flex; }

    .hero-title { font-size: clamp(40px, 10vw, 60px); }
    .hero-buttons { flex-direction: column; align-items: flex-start; gap: 12px; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 40px 32px; }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 28px; }
    .portfolio-filter { flex-wrap: wrap; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
}
