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

:root {
    color-scheme: dark;
    --navy-deep: #03070f;
    --navy: #060d1a;
    --navy-soft: #0d1828;
    --navy-light: #182640;
    --navy-line: rgba(255, 255, 255, 0.06);
    --navy-line-strong: rgba(255, 255, 255, 0.12);
    --cream: #f1ece2;
    --cream-dim: rgba(241, 236, 226, 0.6);
    --cream-soft: rgba(241, 236, 226, 0.85);
    --gold: #c9a66b;
    --gold-bright: #ddbc85;
    --gold-soft: #b89055;
    --gold-faint: rgba(201, 166, 107, 0.12);
    --gold-glow: rgba(201, 166, 107, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    color: var(--cream);
    background: var(--navy);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(6, 13, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.4rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 0;
    border-bottom-color: var(--navy-line);
    background: rgba(6, 13, 26, 0.94);
}

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

.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}

.logo-main .num {
    font-style: normal;
    font-weight: 500;
    color: #ead291;
    font-size: 1.7em;
    margin: 0 2px;
    line-height: 0;
    vertical-align: baseline;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1.2px;
    margin-top: 0.5rem;
    opacity: 0.92;
    text-align: justify;
    text-align-last: justify;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links > li > a,
.nav-link-button {
    color: var(--cream-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links > li > a.active,
.nav-link-button.active {
    color: var(--gold-bright);
}

.nav-links > li > a:hover,
.nav-link-button:hover {
    color: var(--gold-bright);
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -1rem;
    right: -1rem;
    height: 1.2rem;
}

.nav-link-button .caret {
    font-size: 0.7em;
    transition: transform 0.3s;
    margin-top: 2px;
}

.nav-item-dropdown:hover .caret,
.nav-item-dropdown.open .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1.2rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 210px;
    background: rgba(13, 24, 40, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--navy-line-strong);
    border-radius: 14px;
    padding: 0.7rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--cream-soft);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s, background 0.3s;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--gold-bright);
    background: rgba(201, 166, 107, 0.06);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home Hero */
.hero {
    min-height: 100vh;
    padding: 9rem 2.5rem 5rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.18) 0%, transparent 60%);
    top: -200px;
    right: -200px;
    filter: blur(60px);
    animation: float 14s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 188, 133, 0.1) 0%, transparent 60%);
    bottom: -200px;
    left: -100px;
    filter: blur(80px);
    animation: float 18s ease-in-out infinite;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.1); }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    mix-blend-mode: screen;
    opacity: 0.8;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: var(--cream);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero h1 .underline {
    display: inline-block;
    position: relative;
}

.hero h1 .underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: var(--cream-soft);
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 800px;
}

.hero p.description {
    font-size: 1.05rem;
    color: var(--cream-dim);
    margin-bottom: 3rem;
    max-width: 620px;
    line-height: 1.75;
}

.cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.2rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 14px 35px var(--gold-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--cream);
    border: 1px solid var(--navy-line);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Page Hero (inner pages) */
.page-hero {
    padding: 12rem 2.5rem 5rem;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-line);
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.14) 0%, transparent 60%);
    top: -200px;
    right: -150px;
    filter: blur(70px);
    pointer-events: none;
}

.page-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-eyebrow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gold-faint);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    color: var(--cream-soft);
    margin-bottom: 1rem;
}

.page-hero-desc {
    color: var(--cream-dim);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 720px;
}

/* Tight variant - less vertical whitespace */
.page-hero-tight {
    padding-top: 7rem;
    padding-bottom: 2rem;
}

.page-hero-tight h1 {
    margin-bottom: 0;
}

.page-hero-tight + section {
    padding-top: 2.5rem;
}

/* Section Common */
section {
    padding: 7.5rem 2.5rem;
}

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

.section-header {
    margin-bottom: 5rem;
    max-width: 800px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gold-faint);
    color: var(--gold-bright);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.section-subtitle {
    color: var(--cream-dim);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* About / Values */
.about {
    background: var(--navy-deep);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 3rem 2.4rem;
    border-radius: 18px;
    background: var(--navy-soft);
    border: 1px solid var(--navy-line);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.value-card:hover {
    transform: translateY(-6px);
    background: var(--navy-light);
    border-color: var(--gold-soft);
}

.value-card:hover::before {
    opacity: 1;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--cream);
}

.value-card h3 em {
    font-style: italic;
    color: var(--gold);
}

.value-card p {
    color: var(--cream-dim);
    font-size: 0.98rem;
    line-height: 1.75;
}

/* Actors */
.actors {
    background: var(--navy);
}

.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.3rem;
}

.actor-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, border-color 0.4s ease;
    background: var(--navy-soft);
    border: 1px solid var(--navy-line);
}

.actor-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-soft);
}

.actor-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.6s ease;
}

.actor-card:hover .actor-photo {
    transform: scale(1.05);
}

.actor-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy-deep) 0%, rgba(3, 7, 15, 0.4) 35%, transparent 65%);
    z-index: 1;
}

.actor-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 2;
}

.actor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--cream);
}

.actor-role {
    font-size: 0.78rem;
    color: var(--gold-bright);
    letter-spacing: 2px;
    font-weight: 600;
}

/* Actor Modal */
.actor-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.actor-modal.open {
    display: flex;
    opacity: 1;
}

.actor-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 15, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.actor-modal-content {
    position: relative;
    z-index: 1;
    background: var(--navy-soft);
    border: 1px solid var(--navy-line-strong);
    border-radius: 20px;
    max-width: 1080px;
    width: 100%;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-soft) transparent;
}

.actor-modal-content::-webkit-scrollbar {
    width: 6px;
}

.actor-modal-content::-webkit-scrollbar-thumb {
    background: var(--gold-soft);
    border-radius: 3px;
}

.actor-modal.open .actor-modal-content {
    transform: translateY(0);
}

.actor-modal-top {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
}

.actor-modal-image {
    position: relative;
    background: var(--navy-deep);
    overflow: hidden;
    min-height: 520px;
}

.actor-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.actor-modal-body {
    padding: 3rem 2.8rem;
}

.actor-modal-gallery-section {
    padding: 2.2rem 2.8rem 2.8rem;
    border-top: 1px solid var(--navy-line);
    background: var(--navy-deep);
}

.actor-modal-gallery-section.hidden {
    display: none;
}

.actor-modal-gallery-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.3rem;
}

.actor-modal-gallery-heading .actor-modal-section-title {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.actor-modal-gallery-count {
    font-size: 0.78rem;
    color: var(--cream-dim);
    letter-spacing: 1px;
}

.actor-modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.8rem;
}

.actor-modal-gallery-item {
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background: var(--navy-soft);
    border: 1px solid var(--navy-line);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.actor-modal-gallery-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold-soft);
}

.actor-modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Photo Lightbox */
.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(6px);
}

.photo-lightbox.open {
    display: flex;
    opacity: 1;
}

.photo-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: default;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.photo-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(3, 7, 15, 0.85);
    border: 1px solid var(--navy-line-strong);
    color: var(--cream);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.photo-lightbox-close:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: rotate(90deg);
}

@media (max-width: 820px) {
    .photo-lightbox {
        padding: 1rem;
    }
}

.actor-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(3, 7, 15, 0.75);
    border: 1px solid var(--navy-line-strong);
    color: var(--cream);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(8px);
}

.actor-modal-close:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.actor-modal-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-bright);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.actor-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.4rem;
    letter-spacing: -0.5px;
}

.actor-modal-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid var(--navy-line);
    font-size: 0.92rem;
    color: var(--cream-soft);
}

.actor-modal-stats span + span::before {
    content: '·';
    margin-right: 1.2rem;
    color: var(--gold-soft);
}

.actor-modal-section {
    margin-bottom: 1.5rem;
}

.actor-modal-section:last-child {
    margin-bottom: 0;
}

.actor-modal-section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.actor-modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1.5rem;
}

.actor-modal-section ul.single-col {
    grid-template-columns: 1fr;
}

.actor-modal-section li {
    font-size: 0.9rem;
    color: var(--cream-dim);
    line-height: 1.55;
    padding-left: 0.85rem;
    position: relative;
}

.actor-modal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 1px;
    background: var(--gold-soft);
}

.actor-modal-section p {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.65;
}

/* Services (overview cards on home) */
.services {
    background: var(--navy-deep);
}

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

.service-card {
    padding: 3rem;
    border-radius: 18px;
    background: var(--navy-soft);
    border: 1px solid var(--navy-line);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-6px);
    background: var(--navy-light);
    border-color: var(--gold-soft);
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--cream);
}

.service-card h3 em {
    font-style: italic;
    color: var(--gold);
}

.service-card p {
    color: var(--cream-dim);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.service-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-faint);
    border: 1px solid var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: var(--gold-bright);
    align-self: flex-start;
}

.service-card:hover .service-arrow {
    background: var(--gold);
    color: var(--navy-deep);
    transform: rotate(-45deg);
    border-color: var(--gold);
}

/* Service Detail Page */
.service-detail {
    padding: 5rem 2.5rem 7rem;
    background: var(--navy-deep);
}

.service-detail-container {
    max-width: 1080px;
    margin: 0 auto;
}

.service-intro {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 4rem;
    max-width: 900px;
    font-weight: 400;
}

.service-intro em {
    font-style: italic;
    color: var(--gold);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-feature {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: var(--navy-soft);
    border: 1px solid var(--navy-line);
    transition: all 0.4s ease;
}

.service-feature:hover {
    transform: translateY(-4px);
    border-color: var(--gold-soft);
    background: var(--navy-light);
}

.service-feature-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.service-feature p {
    color: var(--cream-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-cta {
    margin-top: 1rem;
    padding: 3rem;
    border-radius: 18px;
    background: var(--navy-soft);
    border: 1px solid var(--gold-soft);
    text-align: center;
}

.service-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-cta h3 em {
    font-style: italic;
    color: var(--gold);
}

.service-cta p {
    color: var(--cream-dim);
    margin-bottom: 2rem;
}

/* Contact Page */
.contact {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.12) 0%, transparent 70%);
    filter: blur(60px);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-text p {
    color: var(--cream-dim);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--cream-soft);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--navy-line);
}

.contact-item .label {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    min-width: 90px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--navy-soft);
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid var(--navy-line);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    color: var(--cream);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(241, 236, 226, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.3);
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Contact map */
.contact-map-section {
    margin-top: 4rem;
}

.contact-map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--navy-line-strong);
    aspect-ratio: 16/7;
    background: var(--navy-soft);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(35%) brightness(0.92);
}

.contact-address-block {
    margin-top: 1.5rem;
    padding: 1.5rem 1.8rem;
    background: var(--navy-soft);
    border-radius: 14px;
    border-left: 3px solid var(--gold);
}

.contact-address-block h4 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-address-block p {
    color: var(--cream-soft);
    line-height: 1.65;
    margin: 0;
    font-size: 0.98rem;
}

/* Home featured-actors preview */
.actors-home {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.actors-home .section-header {
    margin-bottom: 2.5rem;
}

.actors-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.actors-preview-grid .actor-card {
    cursor: pointer;
}

.preview-more {
    text-align: center;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .actors-home {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    .actors-home .section-header {
        margin-bottom: 2rem;
    }
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--cream-dim);
    padding: 3rem 2.5rem 2.5rem;
    border-top: 1px solid var(--navy-line);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}

.footer-logo-main .num {
    font-style: normal;
    font-weight: 500;
    color: #ead291;
    font-size: 1.7em;
    margin: 0 2px;
    line-height: 0;
    vertical-align: baseline;
}

.footer-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.48rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 0.45rem;
    opacity: 0.92;
    text-align: justify;
    text-align-last: justify;
    white-space: nowrap;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(241, 236, 226, 0.4);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

/* Responsive */
@media (max-width: 900px) {
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #060d1a !important;
        background-color: #060d1a !important;
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links > li {
        text-align: left;
    }

    html body nav .nav-links > li > a,
    html body nav .nav-link-button {
        color: #f1ece2 !important;
        -webkit-text-fill-color: #f1ece2 !important;
    }

    html body nav .nav-links > li > a.active,
    html body nav .nav-link-button.active {
        color: #ddbc85 !important;
        -webkit-text-fill-color: #ddbc85 !important;
    }

    .nav-item-dropdown::after { display: none; }

    /* Mobile dropdown - reset to minimal styling */
    html body nav ul.dropdown-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        min-width: 0 !important;
        width: auto !important;
        list-style: none !important;
        display: block !important;
    }

    html body nav .nav-item-dropdown.open ul.dropdown-menu {
        max-height: 500px;
        padding: 0.3rem 0 0.3rem 1.2rem !important;
        margin-top: 0.5rem !important;
        border-left: 2px solid rgba(201, 166, 107, 0.45) !important;
    }

    html body nav ul.dropdown-menu li {
        list-style: none !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    html body nav ul.dropdown-menu li a {
        display: block !important;
        padding: 0.7rem 0.5rem !important;
        color: #e8e2d5 !important;
        -webkit-text-fill-color: #e8e2d5 !important;
        background: transparent !important;
        background-color: transparent !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        line-height: 1.4 !important;
        text-decoration: none !important;
        font-family: 'Inter', 'Noto Sans KR', -apple-system, sans-serif !important;
        opacity: 1 !important;
        visibility: visible !important;
        white-space: nowrap !important;
        text-indent: 0 !important;
        letter-spacing: 0.3px !important;
        forced-color-adjust: none !important;
    }

    html body nav ul.dropdown-menu li a.active {
        color: #ddbc85 !important;
        -webkit-text-fill-color: #ddbc85 !important;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .page-hero {
        padding: 9rem 1.5rem 4rem;
    }

    .page-hero-tight {
        padding-top: 6rem;
        padding-bottom: 1.5rem;
    }

    .page-hero-tight + section {
        padding-top: 2rem;
    }

    .service-detail {
        padding: 3rem 1.5rem 5rem;
    }

    .contact-map-wrapper {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 820px) {
    .actor-modal {
        padding: 0;
    }

    .actor-modal-content {
        max-width: 100%;
        border-radius: 0;
        max-height: 100vh;
        width: 100%;
        border: none;
    }

    .actor-modal-top {
        grid-template-columns: 1fr;
    }

    .actor-modal-image {
        height: 360px;
        min-height: auto;
    }

    .actor-modal-image img {
        object-position: center 22%;
    }

    .actor-modal-body {
        padding: 2rem 1.5rem;
    }

    .actor-modal-name {
        font-size: 2rem;
    }

    .actor-modal-section ul {
        grid-template-columns: 1fr;
    }

    .actor-modal-gallery-section {
        padding: 1.6rem 1.5rem 2rem;
    }

    .actor-modal-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
}
