/* ============================================
   FONTS & RESET
============================================ */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Noto+Serif+KR:wght@300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-deep: #0a1f3d;
    --navy: #122847;
    --navy-light: #1e3a5f;
    --gold: #c9a961;
    --gold-light: #e0c896;
    --gold-dark: #9c8347;
    --cream: #faf7f2;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --black: #0a0a0a;
    --white: #ffffff;

    --font-serif-kr: 'Noto Serif KR', serif;
    --font-serif-en: 'Cormorant Garamond', serif;
    --font-sans: 'Pretendard', -apple-system, sans-serif;

    --container: 1280px;
    --transition: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    transition: all 0.4s var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 31, 61, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-serif-en);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    font-family: var(--font-serif-en);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -1px;
}

.logo-text-kr {
    font-family: var(--font-serif-kr);
    font-size: 14px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 4px;
    margin-left: 4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
}

.nav-list a:hover {
    color: var(--gold-light);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 110;
}

.menu-toggle span {
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--transition);
}

/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* 영상 16:9 placeholder. 실제 영상이 들어갈 위치 */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* 영상 미입력 시 placeholder 배경 */
.hero-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.5) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
    z-index: 1;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 31, 61, 0.55) 0%,
        rgba(10, 31, 61, 0.4) 50%,
        rgba(10, 31, 61, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.hero-text {
    color: var(--white);
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.3s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-serif-kr);
    font-weight: 300;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 1s var(--transition) forwards;
}

.hero-title .line:nth-child(1) span { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.7s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.9s; }

.hero-title strong {
    font-weight: 700;
    color: var(--gold-light);
}

.hero-title em {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 1.2s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 1.4s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.35);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
}

.btn .arrow {
    width: 18px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.3s var(--transition);
}

.btn .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.btn:hover .arrow {
    width: 28px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s var(--transition) 1.8s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold));
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--gold);
    animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -30px; }
    100% { top: 100%; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero corner mark */
.hero-mark {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-serif-en);
    font-size: 12px;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* ============================================
   SECTION COMMON
============================================ */
section {
    position: relative;
}

.section {
    padding: 140px 0;
}

.section-head {
    margin-bottom: 80px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 16px;
}

.section-title {
    font-family: var(--font-serif-kr);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.3;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-title strong {
    font-weight: 600;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT
============================================ */
.about {
    background: var(--cream);
    overflow: hidden;
}

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

.about-visual {
    position: relative;
    aspect-ratio: 4/5;
}

.about-visual-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
}

.about-visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-visual-main::after {
    content: 'CORPORATE\AINSURANCE\A& TAX\AADVISORY';
    white-space: pre;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-serif-en);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.about-visual-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.about-visual-main:has(.about-visual-photo)::before {
    content: none;
}

.about-visual-main:has(.about-visual-photo)::after {
    content: none;
}

.about-visual-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    text-align: center;
    z-index: 2;
}

.about-visual-badge-num {
    font-family: var(--font-serif-en);
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
}

.about-visual-badge-label {
    font-family: var(--font-serif-kr);
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 2px;
}

.about-content .section-eyebrow {
    margin-left: 0;
}

.about-content .section-eyebrow::before {
    margin-left: 0;
    width: 0;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.about-text {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--navy-deep);
    font-weight: 600;
}

.about-sign {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
    font-family: var(--font-serif-kr);
    font-size: 18px;
    color: var(--navy-deep);
}

.about-sign-name {
    font-size: 22px;
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================
   SERVICES
============================================ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.service-card {
    background: var(--white);
    padding: 64px 48px;
    transition: all 0.5s var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s var(--transition);
}

.service-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.service-card:hover::before {
    width: 100%;
}

.service-num {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    transition: all 0.4s var(--transition);
}

.service-card:hover .service-icon {
    color: var(--gold-dark);
    transform: scale(1.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.service-title {
    font-family: var(--font-serif-kr);
    font-size: 28px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.service-desc {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-list {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    color: var(--gray-800);
    font-size: 14px;
    margin-bottom: 12px;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* ============================================
   STATS / NUMBERS
============================================ */
.numbers {
    padding: 120px 0;
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 169, 97, 0.06) 0%, transparent 40%);
}

.numbers-head {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.numbers-head .section-eyebrow {
    color: var(--gold-light);
}

.numbers-head .section-title {
    color: var(--white);
}

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

.number-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.number-value {
    font-family: var(--font-serif-en);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.number-suffix {
    font-family: var(--font-serif-kr);
    font-size: 24px;
    color: var(--gold-light);
    font-weight: 300;
}

.number-label {
    font-family: var(--font-serif-kr);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* ============================================
   PROCESS
============================================ */
.process {
    background: var(--cream);
}

.process-list {
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(10, 31, 61, 0.08);
    transition: padding 0.4s var(--transition);
}

.process-item:hover {
    padding-left: 24px;
}

.process-num {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 56px;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
}

.process-content h3 {
    font-family: var(--font-serif-kr);
    font-size: 26px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.process-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.process-arrow {
    color: var(--navy);
    transition: all 0.4s var(--transition);
}

.process-item:hover .process-arrow {
    color: var(--gold-dark);
    transform: translateX(8px);
}

/* ============================================
   PARTNERS
============================================ */
.partners {
    background: var(--white);
    padding: 100px 0;
}

.partners-head {
    text-align: center;
    margin-bottom: 60px;
}

.partners-eyebrow {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.partners-title {
    font-family: var(--font-serif-kr);
    font-size: 22px;
    font-weight: 400;
    color: var(--navy-deep);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid var(--gray-200);
    border-left: 1px solid var(--gray-200);
}

.partner-cell {
    aspect-ratio: 16/9;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: all 0.4s var(--transition);
}

.partner-cell:hover {
    background: var(--cream);
}

.partner-name {
    font-family: var(--font-serif-kr);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
    transition: color 0.3s var(--transition);
}

.partner-name span {
    display: block;
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 11px;
    color: var(--gold-dark);
    margin-top: 4px;
    letter-spacing: 1px;
}

.partner-cell:hover .partner-name {
    color: var(--navy-deep);
}

/* ============================================
   CTA
============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cta-text-block .cta-eyebrow {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.cta-text-block h2 {
    font-family: var(--font-serif-kr);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-text-block h2 strong {
    font-weight: 600;
    color: var(--gold-light);
}

.cta-text-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-col h4 {
    color: var(--gold-light);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    transition: color 0.3s var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-item span:first-child {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ============================================
   SUB PAGE COMMON
============================================ */
.sub-hero {
    height: 480px;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.sub-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--gold);
}

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

.sub-hero-eyebrow {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-light);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.sub-hero-title {
    font-family: var(--font-serif-kr);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sub-hero-title strong {
    font-weight: 600;
    color: var(--gold-light);
}

.breadcrumb {
    background: var(--cream);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-600);
}

.breadcrumb-list {
    display: flex;
    gap: 12px;
    align-items: center;
}

.breadcrumb-list li::after {
    content: '/';
    margin-left: 12px;
    color: var(--gold);
}

.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: var(--navy-deep); font-weight: 500; }

/* ============================================
   ABOUT PAGE - GREETING
============================================ */
.greeting {
    padding: 140px 0;
    background: var(--white);
}

.greeting-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.greeting-image {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
}

.greeting-image::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 96px;
    font-weight: 300;
    color: rgba(201, 169, 97, 0.4);
    letter-spacing: 8px;
}

.greeting-image::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: var(--gold);
}

.greeting-image--photo::before {
    content: none;
}

.greeting-image--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.greeting-image--photo::after {
    z-index: 2;
}

.greeting-image-tag {
    position: absolute;
    bottom: 32px;
    left: 24px;
    color: var(--gold-light);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 3px;
    z-index: 1;
}

.greeting-image--photo .greeting-image-tag {
    z-index: 3;
}

.greeting-content .greeting-eyebrow {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.greeting-content h2 {
    font-family: var(--font-serif-kr);
    font-weight: 300;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--navy-deep);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.greeting-content h2 strong {
    font-weight: 600;
}

.greeting-content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.greeting-content p strong {
    color: var(--navy-deep);
    font-weight: 600;
}

.greeting-sign {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.greeting-sign-title {
    font-family: var(--font-serif-kr);
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 8px;
}

.greeting-sign-name {
    font-family: var(--font-serif-kr);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-deep);
}

.greeting-sign-name span {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-dark);
    margin-left: 12px;
    font-weight: 400;
}

/* values section */
.values {
    padding: 140px 0;
    background: var(--cream);
}

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

.value-card {
    background: var(--white);
    padding: 56px 40px;
    text-align: center;
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 31, 61, 0.1);
}

.value-card:hover::after {
    width: 60%;
}

.value-num {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 16px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 32px;
    color: var(--navy-deep);
}

.value-card h3 {
    font-family: var(--font-serif-kr);
    font-size: 24px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section {
    padding: 140px 0;
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-info h2 {
    font-family: var(--font-serif-kr);
    font-size: 36px;
    font-weight: 300;
    color: var(--navy-deep);
    line-height: 1.4;
    margin-bottom: 24px;
}

.contact-info h2 strong { font-weight: 600; }

.contact-info > p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-detail-list {
    border-top: 1px solid var(--gray-200);
}

.contact-detail-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
}

.contact-detail-label {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 13px;
    color: var(--gold-dark);
    letter-spacing: 2px;
    padding-top: 4px;
}

.contact-detail-value {
    color: var(--navy-deep);
    font-size: 17px;
    font-family: var(--font-serif-kr);
    font-weight: 500;
    line-height: 1.6;
}

.contact-detail-value small {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 400;
    margin-top: 4px;
}

.contact-form-wrap {
    background: var(--cream);
    padding: 56px 48px;
    border-top: 3px solid var(--gold);
}

.form-eyebrow {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 15px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.form-title {
    font-family: var(--font-serif-kr);
    font-size: 28px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.form-desc {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

.form-label {
    display: block;
    font-family: var(--font-serif-kr);
    font-size: 13px;
    font-weight: 500;
    color: var(--navy-deep);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-label::after {
    content: ' *';
    color: var(--gold-dark);
}

.form-label.optional::after { content: ''; }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--navy-deep);
    transition: all 0.3s var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 32px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

.form-checkbox-row input {
    margin-top: 4px;
    accent-color: var(--gold);
}

.form-checkbox-row a {
    color: var(--navy-deep);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--navy-deep);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ============================================
   ANIMATIONS - INTERSECTION OBSERVER
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--transition), transform 1s var(--transition);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .nav-list { gap: 28px; }
    .about-inner { grid-template-columns: 1fr; gap: 60px; }
    .greeting-inner { grid-template-columns: 1fr; gap: 60px; }
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-item:nth-child(2) { border-right: none; }
    .number-item:nth-child(1), .number-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .values-grid { grid-template-columns: 1fr; }
    .section { padding: 100px 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
    .header-inner { padding: 0 24px; }

    .menu-toggle { display: flex; cursor: pointer; }
    .nav { display: none; }
    .nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-deep);
        padding: 100px 32px 40px;
        gap: 32px;
        z-index: 105;
    }
    .nav.is-open .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .nav.is-open .nav-list a {
        font-family: var(--font-serif-kr);
        font-size: 22px;
        font-weight: 300;
    }

    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-mark { display: none; }

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

    .numbers-grid { grid-template-columns: 1fr; }
    .number-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .number-item:last-child { border-bottom: none; }

    .process-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    .process-arrow { display: none; }
    .process-num { font-size: 36px; }
    .process-content h3 { font-size: 20px; }

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

    .cta-inner { flex-direction: column; text-align: center; gap: 32px; }

    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .greeting-inner, .contact-inner { padding: 0 24px; }
    .contact-form-wrap { padding: 40px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-detail-item { grid-template-columns: 1fr; gap: 8px; }

    .about-visual-badge {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -20px;
    }
    .about-visual-badge-num { font-size: 42px; }
}

/* ============================================
   BUSINESS PAGE (.business.php)
============================================ */
.biz-section {
    padding: 140px 0;
    position: relative;
}
.biz-section.alt { background: var(--cream); }
.biz-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.biz-inner.reverse {
    grid-template-columns: 1.2fr 1fr;
}
.biz-num {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 80px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 24px;
}
.biz-eyebrow {
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-dark);
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.biz-title {
    font-family: var(--font-serif-kr);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 400;
    color: var(--navy-deep);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}
.biz-title strong { font-weight: 700; }
.biz-desc {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 32px;
}
.biz-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}
.biz-feature {
    background: var(--white);
    padding: 24px;
    border-left: 2px solid var(--gold);
}
.biz-section.alt .biz-feature { background: var(--white); }
.biz-feature-title {
    font-family: var(--font-serif-kr);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 8px;
}
.biz-feature-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}
.biz-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    min-height: 0;
}
.biz-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.biz-visual-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.biz-visual:has(.biz-visual-photo) {
    padding: 0;
    background: var(--navy-deep);
}

.biz-visual:has(.biz-visual-photo) .biz-visual-tag {
    padding: 48px 48px 0;
    box-sizing: border-box;
}

.biz-visual:has(.biz-visual-photo) .biz-visual-bottom {
    padding: 0 48px 48px;
    box-sizing: border-box;
}

.biz-visual:has(.biz-visual-photo)::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(10, 31, 61, 0.5) 0%,
        rgba(10, 31, 61, 0.25) 42%,
        rgba(10, 31, 61, 0.88) 100%
    );
}

.biz-visual:has(.biz-visual-photo)::before {
    z-index: 2;
}

.biz-visual:has(.biz-visual-photo) .biz-visual-tag,
.biz-visual:has(.biz-visual-photo) .biz-visual-icon,
.biz-visual:has(.biz-visual-photo) .biz-visual-bottom {
    z-index: 3;
}

.biz-visual:has(.biz-visual-photo) .biz-visual-icon {
    display: none;
}

.biz-visual-tag {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    color: var(--gold-light);
    font-family: var(--font-serif-en);
    font-style: italic;
    font-size: 14px;
    letter-spacing: 3px;
}
.biz-visual-icon {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 120px;
    width: 100%;
    max-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 169, 97, 0.7);
}
.biz-visual-icon svg {
    width: 120px !important;
    height: 120px !important;
    max-width: 100%;
    flex-shrink: 0;
    display: block;
}
.biz-visual-bottom {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    color: var(--white);
}
.biz-visual-bottom h4 {
    font-family: var(--font-serif-kr);
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.biz-visual-bottom h4 strong { font-weight: 600; color: var(--gold-light); }
.biz-visual-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1024px) {
    .biz-inner, .biz-inner.reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .biz-section { padding: 80px 0; }
    .biz-features { grid-template-columns: 1fr; }
}

/* ============================================
   PRIVACY POLICY PAGE
============================================ */
.policy-section {
    padding: 72px 0 120px;
    background: var(--white);
}

.policy-prose {
    max-width: 860px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.85;
}

.policy-effective {
    color: var(--navy-deep);
    font-family: var(--font-serif-kr);
    margin-bottom: 12px;
}

.policy-meta {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.policy-h2 {
    font-family: var(--font-serif-kr);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-deep);
    margin: 40px 0 16px;
    letter-spacing: -0.02em;
}

.policy-h2:first-of-type {
    margin-top: 0;
}

.policy-prose p {
    margin: 0 0 14px;
}

.policy-prose a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-prose a:hover {
    color: var(--navy-deep);
}

.policy-prose ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.policy-prose li {
    margin-bottom: 10px;
}

.policy-prose ul.policy-contact {
    list-style: none;
    padding-left: 0;
}

.policy-contact li {
    margin-bottom: 8px;
}
