:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --black-lighter: #2D2D2D;
    --white: #FAFAFA;
    --white-soft: #F0F0F0;
    --gray: #888888;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Noto Serif SC', 'Playfair Display', Georgia, serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}
.golden-accent {
    color: var(--gold);
}
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    width: 60%;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 0.5em;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.5s ease;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
}
header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
}
.logo::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.logo:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.logo span {
    color: var(--gold);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
}
nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
nav a:hover, nav a.active {
    color: var(--gold);
}
nav a:hover::after, nav a.active::after {
    width: 100%;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle span {
    width: 30px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
}
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}
.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}
.hero-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}
.hero-title span {
    color: var(--gold);
    display: block;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}
.hero-cta:hover {
    color: var(--black);
}
.hero-cta:hover::before {
    left: 0;
}
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}
.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%, 100% { transform: scaleY(0.5); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotateY(-45deg) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0deg) rotateX(0deg);
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        clip-path: inset(100% 0 0 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}
@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
        color: var(--white);
    }
    50% {
        text-shadow: 0 0 40px rgba(201, 169, 98, 1), 0 0 80px rgba(201, 169, 98, 0.6), 0 0 120px rgba(201, 169, 98, 0.4);
        color: var(--gold-light);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}
.page-header-style-1 {
    background: linear-gradient(180deg, #000000 0%, #1a1510 50%, #000000 100%);
}
.page-header-style-2 {
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 50%, #0a1a0a 100%);
}
.page-header-style-3 {
    background: linear-gradient(90deg, #0a0a1a 0%, #1a1a0a 50%, #1a0a1a 100%);
}
.page-header-style-4 {
    background: linear-gradient(180deg, #1a1508 0%, #0f0a05 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}
.page-header-style-4::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}
.page-header-style-5 {
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1005 25%, #0a0a0a 50%, #05101a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-title-1 .page-header-title {
    animation: fadeInUp 1.5s ease-out forwards;
}
.animate-title-2 .page-header-title {
    animation: scaleIn 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.animate-title-3 .page-header-title {
    animation: fadeInLeft 1.5s ease-out forwards;
}
.animate-title-4 .page-header-title {
    animation: rotateIn 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    perspective: 1000px;
}
.animate-title-5 .page-header-title {
    animation: glow 2s ease-in-out infinite;
}
.animate-subtitle-1 .page-header-subtitle {
    animation: fadeInUp 1.5s ease-out 0.4s forwards;
    opacity: 0;
}
.animate-subtitle-2 .page-header-subtitle {
    animation: fadeInRight 1.5s ease-out 0.5s forwards;
    opacity: 0;
}
.animate-subtitle-3 .page-header-subtitle {
    animation: fadeInDown 1.5s ease-out 0.4s forwards;
    opacity: 0;
}
.animate-subtitle-4 .page-header-subtitle {
    animation: scaleIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
    opacity: 0;
}
.animate-subtitle-5 .page-header-subtitle {
    animation: float 2.5s ease-in-out infinite;
}
.animate-label-1 .section-label {
    animation: fadeInLeft 1.2s ease-out forwards;
}
.animate-label-2 .section-label {
    animation: fadeInRight 1.2s ease-out forwards;
}
.animate-label-3 .section-label {
    animation: fadeInUp 1.2s ease-out forwards;
}
.animate-label-4 .section-label {
    animation: fadeInDown 1.2s ease-out forwards;
}
.animate-label-5 .section-label {
    animation: slideUp 1.5s ease-out forwards;
}
section {
    padding: 150px 0;
}
.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 35px;
}
.section-title span {
    color: var(--gold);
}
.about {
    background: var(--black);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image-frame {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--black-soft);
    overflow: hidden;
}
.about-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    z-index: 1;
}
.about-image-display {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black-lighter) 100%);
    position: relative;
    overflow: hidden;
}
.about-image-display::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(201, 169, 98, 0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.about-image-icon {
    font-size: 5rem;
    opacity: 0.3;
    margin-bottom: 20px;
    z-index: 1;
}
.about-image-text {
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    z-index: 1;
}
.about-image-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    border: 1px solid var(--gold);
    z-index: -1;
}
.about-content {
    position: relative;
}
.about-text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 300;
}
.about-highlights {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--black-lighter);
}
.about-highlight {
    text-align: center;
}
.about-highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}
.about-highlight-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.services {
    background: var(--black-soft);
}
.services-header {
    text-align: center;
    margin-bottom: 100px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.service-item {
    background: var(--black);
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.5s ease;
}
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.5s ease;
}
.service-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}
.service-item:hover::before {
    opacity: 0.3;
}
.service-item:hover::after {
    height: 100%;
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 30px;
    display: inline-block;
}
.service-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}
.service-description {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}
.gallery {
    background: var(--black);
}
.gallery-header {
    text-align: center;
    margin-bottom: 100px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    background: var(--black-soft);
}
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.gallery-item:hover::before {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.gallery-item img.loaded + .gallery-image-display {
    display: none;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-image-display {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--black-soft) 0%, var(--black-lighter) 100%);
    position: relative;
}
.gallery-image-display::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}
.gallery-image-icon {
    font-size: 4rem;
    opacity: 0.4;
    z-index: 1;
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}
.gallery-caption-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
}
.gallery-caption-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.contact {
    background: var(--black-soft);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.2;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}
.contact-info {
    position: relative;
}
.contact-item {
    margin-bottom: 50px;
    padding-left: 30px;
    border-left: 1px solid var(--gold);
}
.contact-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-value {
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-value:hover {
    color: var(--gold);
}
.contact-value.address {
    line-height: 1.7;
}
.social-links {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--black-lighter);
}
.social-links-title {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 30px;
}
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border: 1px solid var(--black-lighter);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    cursor: pointer;
    background: transparent;
    font-family: inherit;
}
.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.contact-form-section {
    padding: 60px;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    position: relative;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--gold);
    opacity: 0.1;
    pointer-events: none;
}
.form-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
}
.form-group {
    margin-bottom: 30px;
}
.form-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 18px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--black-lighter);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 60px;
    background: var(--gold);
    border: none;
    color: var(--black);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: inherit;
    font-weight: 500;
}
.form-submit:hover {
    background: var(--gold-light);
    transform: translateX(5px);
}
footer {
    padding: 80px 0 40px;
    background: var(--black);
    border-top: 1px solid var(--black-lighter);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.footer-logo {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.1em;
}
.footer-logo span {
    color: var(--gold);
}
.footer-nav {
    display: flex;
    gap: 40px;
}
.footer-nav a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: var(--gold);
}
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--black-lighter);
}
.footer-copyright {
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black-soft);
    padding: 50px;
    border: 1px solid var(--gold);
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: zoomIn 0.4s ease;
}
@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.9); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--gray);
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}
.modal-close:hover {
    color: var(--gold);
}
.modal-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
}
.qr-code {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal-text {
    color: var(--gray);
    font-size: 0.95rem;
}
.image-modal-content {
    background: transparent;
    border: none;
    padding: 0;
    max-width: 90%;
    max-height: 90%;
    width: auto;
}
.image-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid var(--gold);
}
.image-modal-caption {
    text-align: center;
    color: var(--gold);
    padding-top: 25px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}
.page-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
}
.page-header-content {
    text-align: center;
    z-index: 1;
}
.page-header-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}
.page-header-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-size: 0.85rem;
}
.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: var(--gold);
}
.breadcrumb span {
    color: var(--gold);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.team-member {
    text-align: center;
}
.team-photo {
    aspect-ratio: 3/4;
    background: var(--black-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    border: 1px solid var(--black-lighter);
}
.team-icon {
    font-size: 4rem;
    opacity: 0.3;
}
.team-name {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.team-role {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--gold);
    opacity: 0.3;
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 60px;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}
.timeline-content {
    max-width: 350px;
    padding: 30px;
    background: var(--black);
    border: 1px solid var(--black-lighter);
    position: relative;
    margin-right: 30px;
}
.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}
.timeline-dot {
    position: absolute;
    right: -38px;
    top: 35px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
}
.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -38px;
}
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.timeline-text {
    color: var(--gray);
    line-height: 1.7;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact::before {
        display: none;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    header {
        padding: 20px 0;
    }
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
    }
    nav ul.active {
        right: 0;
    }
    nav a {
        font-size: 1.2rem;
    }
    .nav-toggle {
        display: flex;
    }
    section {
        padding: 100px 0;
    }
    .services-header,
    .gallery-header {
        margin-bottom: 60px;
    }
    .about-highlights {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .service-item {
        padding: 40px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-section {
        padding: 40px 30px;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
