/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: #0a0f0e;
    color: #e8e8e8;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 12px;
}
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section__title--center { text-align: center; }
.section__subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}
.section__subtitle--center { text-align: center; }
.text-gold { color: #d4a017; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}
.btn--gold {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    color: #0a0f0e;
    border: 2px solid transparent;
}
.btn--gold:hover {
    background: linear-gradient(135deg, #e6b422, #d4a017);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}
.btn--outline {
    background: transparent;
    color: #f0f0f0;
    border: 2px solid rgba(212, 160, 23, 0.5);
}
.btn--outline:hover {
    border-color: #d4a017;
    background: rgba(212, 160, 23, 0.1);
    transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(10, 15, 14, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
}
.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f0f0f0;
}
.nav__logo-icon circle { fill: url(#logoGrad); }
.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
    transition: color 0.3s ease;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a017;
    transition: width 0.3s ease;
}
.nav__link:hover { color: #d4a017; }
.nav__link:hover::after { width: 100%; }
.nav__btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__line1, .nav__line2, .nav__line3 { transition: all 0.3s ease; }
.nav__toggle.active .nav__line1 { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active .nav__line2 { opacity: 0; }
.nav__toggle.active .nav__line3 { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #0a0f0e 0%, 
            #0d1f1a 25%, 
            #0a2a25 50%, 
            #0d1a2e 75%, 
            #0a0f0e 100%);
    z-index: 0;
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
}
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 30%, rgba(212, 160, 23, 0.3), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(13, 148, 136, 0.3), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(212, 160, 23, 0.2), transparent),
        radial-gradient(1px 1px at 80% 60%, rgba(13, 148, 136, 0.2), transparent),
        radial-gradient(1.5px 1.5px at 10% 80%, rgba(212, 160, 23, 0.25), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(13, 148, 136, 0.2), transparent);
    animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 15, 14, 0.3) 0%, transparent 30%, transparent 70%, rgba(10, 15, 14, 0.5) 100%);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 24px;
}
.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero__title em {
    font-style: italic;
    color: #d4a017;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #9ca3af;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero__trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}
.hero__trust-item svg { color: #d4a017; }
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #d4a017;
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.6;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.2), transparent);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__images {
    position: relative;
}
.about__img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.about__img-main img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}
.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #0a0f0e;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.about__img-secondary img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}
.about__accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 16px;
    z-index: -1;
}
.about__content { padding: 20px 0; }
.about__text {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}
.about__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about__stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4a017;
    line-height: 1;
}
.about__stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 4px;
}
.about__stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(212, 160, 23, 0.2);
}

/* ===== Menu ===== */
.menu {
    padding: 120px 0;
    position: relative;
}
.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.2), transparent);
}
.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.menu__tab {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.menu__tab:hover { color: #d4a017; border-color: rgba(212, 160, 23, 0.3); }
.menu__tab.active {
    background: rgba(212, 160, 23, 0.15);
    color: #d4a017;
    border-color: rgba(212, 160, 23, 0.4);
}
.menu__panel { display: none; animation: fadeIn 0.4s ease; }
.menu__panel.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 48px;
    max-width: 900px;
    margin: 0 auto;
}
.menu__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}
.menu__item-info { flex: 1; }
.menu__item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 4px;
}
.menu__item-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}
.menu__item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d4a017;
    flex-shrink: 0;
    opacity: 0.5;
}
.menu__item-dot--gold { opacity: 1; box-shadow: 0 0 8px rgba(212, 160, 23, 0.5); }
.menu__note {
    text-align: center;
    color: #4b5563;
    font-size: 0.85rem;
    margin-top: 40px;
    font-style: italic;
}

/* ===== Gallery ===== */
.gallery {
    padding: 120px 0 80px;
    position: relative;
}
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.2), transparent);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}
.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 14, 0.3) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 6; }
.gallery__item:not(.gallery__item--wide) { grid-column: span 3; }

/* ===== Visit ===== */
.visit {
    padding: 120px 0;
    position: relative;
}
.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.2), transparent);
}
.visit__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, rgba(13, 31, 26, 0.6), rgba(10, 26, 46, 0.4));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.1);
}
.visit__content {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.visit__text {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.visit__details { display: flex;
    flex-direction: column;
    gap: 24px;
}
.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.visit__detail svg { color: #d4a017; flex-shrink: 0; margin-top: 2px; }
.visit__detail strong {
    display: block;
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 2px;
}
.visit__detail span {
    font-size: 0.9rem;
    color: #6b7280;
}
.visit__image {
    position: relative;
    min-height: 400px;
}
.visit__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 160, 23, 0.2), transparent);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__text {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.contact__method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.contact__method:hover { color: #d4a017; }
.contact__method svg { color: #d4a017; flex-shrink: 0; }
.contact__form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__field { margin-bottom: 20px; }
.contact__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}
.contact__input,
.contact__textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}
.contact__input::placeholder,
.contact__textarea::placeholder { color: #4b5563; }
.contact__input:focus,
.contact__textarea:focus {
    border-color: rgba(212, 160, 23, 0.5);
    background: rgba(212, 160, 23, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}
.contact__textarea { resize: vertical; min-height: 120px; }
.contact__success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 12px;
    color: #2dd4bf;
    font-size: 0.9rem;
}
.contact__success.show { display: flex; }

/* ===== Footer ===== */
.footer {
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 16px;
}
.footer__brand p { color: #6b7280; font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__links h4,
.footer__hours h4,
.footer__contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #d4a017;
    margin-bottom: 20px;
}
.footer__links a {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}
.footer__links a:hover { color: #d4a017; }
.footer__hours p,
.footer__contact p,
.footer__contact a {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}
.footer__contact a:hover { color: #d4a017; }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 0;
    text-align: center;
}
.footer__bottom p { color: #4b5563; font-size: 0.85rem; }

/* ===== Mobile Overlay ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 14, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}
.mobile-overlay.active { display: flex; }
.mobile-overlay .nav__menu {
    flex-direction: column;
    gap: 24px;
}
.mobile-overlay .nav__link,
.mobile-overlay .nav__btn {
    font-size: 1.3rem;
    color: #f0f0f0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about__grid { gap: 48px; }
    .about__img-secondary img { width: 280px; height: 280px; }
    .about__img-secondary { right: -20px; bottom: -20px; }
    .gallery__item--wide { grid-column: span 6; }
    .gallery__item:not(.gallery__item--wide) { grid-column: span 6; }
    .visit__content { padding: 48px 40px; }
}

@media (max-width: 768px) {
    .nav__menu { display: none; }
    .nav__toggle { display: flex; }
    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__trust { gap: 20px; }
    .about__grid { grid-template-columns: 1fr; gap: 60px; }
    .about__img-main img { height: 500px; }
    .about__img-secondary { right: 10px; bottom: -10px; }
    .about__img-secondary img { width: 200px; height: 200px; }
    .menu__grid { grid-template-columns: 1fr; gap: 8px; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide,
    .gallery__item:not(.gallery__item--wide) { grid-column: span 1; }
    .gallery__item img { height: 250px; }
    .visit__card { grid-template-columns: 1fr; }
    .visit__image { min-height: 300px; }
    .visit__content { padding: 40px 28px; }
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .contact__form-wrap { padding: 28px; }
    .contact__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: span 2; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .about__stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .about__stat-divider { width: 48px; height: 1px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
}
