/* ═══════════════════════════════════════
   TWOKINP — Main Stylesheet
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4A843;
  --gold2: #e8c070;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --white: #ffffff;
  --gray: #B0B0B0;
  --dim: #555;
  --border: #222;
  --red: #e74c3c;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: 'DM Sans', sans-serif; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }
.no-scroll { overflow: hidden; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.section-sub { font-size: 15px; color: var(--gray); margin-bottom: 48px; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-logo { display: flex; align-items: center; gap: 12px; }
.top-logo img { height: 36px; width: auto; }
.top-logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.top-logo-text span { color: var(--gold); }
.top-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-socials { display: flex; align-items: center; gap: 14px; }
.top-socials a { color: var(--gray); font-size: 13px; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.top-socials a:hover { color: var(--gold); }
.top-phone a { color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: 0.03em; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.top-phone a:hover { color: var(--gold2); }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn { background: transparent; border: 1px solid var(--border); color: var(--gray); padding: 4px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; transition: all 0.2s; border-radius: 2px; }
.lang-btn:hover, .lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ── NAVIGATION ── */
#main-nav {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
#main-nav.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0 48px; display: flex; align-items: stretch; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 18px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray); white-space: nowrap;
  transition: color 0.2s; cursor: pointer; border: none; background: none;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--gold); }
.nav-link svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--bg3); border: 1px solid var(--border);
  min-width: 200px; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: all 0.2s ease;
  z-index: 200;
}
.nav-item:hover > .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a, .dropdown-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px; font-size: 13px; color: var(--gray);
  transition: all 0.15s; white-space: nowrap; border: none; background: none; width: 100%; text-align: left; cursor: pointer;
}
.dropdown a:hover, .dropdown-trigger:hover { color: var(--white); background: rgba(212,168,67,0.08); padding-left: 22px; }
.dropdown-trigger svg { width: 8px; height: 8px; }

/* Sub-dropdown */
.has-sub { position: relative; }
.sub-dropdown {
  position: absolute; top: 0; left: 100%;
  background: var(--bg3); border: 1px solid var(--border);
  min-width: 180px; opacity: 0; pointer-events: none;
  transform: translateX(4px); transition: all 0.2s;
}
.has-sub:hover > .sub-dropdown { opacity: 1; pointer-events: all; transform: translateX(0); }

/* Burger */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; margin-left: auto; padding: 4px; }
.burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; top: 0; right: -100%; width: 85vw; max-width: 360px; height: 100vh;
  background: var(--bg2); z-index: 500; overflow-y: auto;
  transition: right 0.35s ease; padding: 60px 28px 28px; border-left: 1px solid var(--border);
}
#mobile-menu.open { right: 0; display: block; }
.mobile-menu-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--gray); font-size: 24px; cursor: pointer; }
.mobile-nav-link { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--white); border-bottom: 1px solid var(--border); letter-spacing: 0.04em; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { display: block; padding: 10px 0; font-size: 14px; color: var(--gray); border-bottom: 1px solid #1a1a1a; }
.mobile-sub a:hover { color: var(--gold); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 499; }
#mobile-menu.open ~ .mobile-overlay { display: block; }

/* ── HERO SLIDER ── */
.slider-section { position: relative; overflow: hidden; height: 88vh; min-height: 500px; }
.slider-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.77,0,0.175,1); }
.slide { flex: 0 0 100%; height: 100%; position: relative; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.slide-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 0 10vw; max-width: 800px; }
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5.5vw, 72px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; animation: fadeUp 0.8s ease both; }
.slide-sub { font-size: clamp(15px, 1.8vw, 20px); color: rgba(255,255,255,0.82); margin-bottom: 36px; animation: fadeUp 0.8s 0.15s ease both; }
.slide-btn { display: inline-block; background: var(--gold); color: var(--bg); padding: 14px 36px; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s, transform 0.2s; animation: fadeUp 0.8s 0.3s ease both; }
.slide-btn:hover { background: var(--gold2); transform: translateY(-2px); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; z-index: 10; transition: all 0.2s; }
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.25s; }
.dot.active { background: var(--gold); transform: scale(1.3); }

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

/* ── SECTIONS ── */
.section { padding: 88px 48px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-alt { background: var(--bg2); }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-card { background: var(--bg3); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,168,67,0.12); }
.gallery-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { font-size: 32px; }
.gallery-info { padding: 16px; }
.gallery-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.gallery-desc { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.gallery-price { font-size: 13px; font-weight: 700; color: var(--gold); }

/* ── DIVIDER ── */
.gold-divider { border: none; border-top: 1px solid var(--gold); margin: 0; opacity: 0.4; }
.divider-section { padding: 60px 48px; text-align: center; }
.divider-text { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 3px solid var(--gold); border-radius: 2px; }
.about-img-wrap::before { content: ''; position: absolute; inset: -12px; border: 1px solid rgba(212,168,67,0.25); border-radius: 2px; pointer-events: none; }
.about-eyebrow { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.about-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; margin-bottom: 24px; line-height: 1.2; }
.about-text { font-size: 16px; color: var(--gray); line-height: 1.85; margin-bottom: 32px; }
.about-btn { display: inline-block; border: 1px solid var(--gold); color: var(--gold); padding: 12px 32px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s; }
.about-btn:hover { background: var(--gold); color: var(--bg); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 600; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-inner { display: flex; gap: 48px; align-items: center; max-width: 94vw; max-height: 92vh; position: relative; }
.lb-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: var(--gray); font-size: 28px; cursor: pointer; transition: color 0.2s; }
.lb-close:hover { color: var(--gold); }
.lb-img-wrap { flex: 1; max-width: 64vw; }
.lb-img-wrap img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lb-info { min-width: 260px; max-width: 300px; }
.lb-cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.lb-title-text { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.lb-desc-text { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.lb-price-text { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 24px; }
.lb-btn { display: block; background: var(--gold); color: var(--bg); padding: 14px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transition: background 0.2s; border: none; width: 100%; cursor: pointer; }
.lb-btn:hover { background: var(--gold2); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.15); color: var(--white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 10; transition: all 0.2s; border-radius: 0; }
.lb-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.lb-nav.prev { left: -56px; }
.lb-nav.next { right: -56px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; }
.contact-info { }
.contact-info-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { font-size: 18px; margin-top: 2px; }
.contact-detail-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: var(--gray); }
.contact-detail-value a { color: var(--gray); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 14px; margin-top: 32px; }
.contact-social-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--border); color: var(--gray); font-size: 13px; font-weight: 500; transition: all 0.2s; }
.contact-social-btn:hover { border-color: var(--gold); color: var(--gold); }
.contact-form { }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  color: var(--white); padding: 13px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; outline: none; transition: border-color 0.25s; border-radius: 0; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input.error, .form-select.error, .form-textarea.error { border-color: var(--red); }
.form-select option { background: var(--bg3); }
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field-error { display: none; font-size: 12px; color: var(--red); margin-top: 5px; }
.form-submit { width: 100%; background: var(--gold); border: none; color: var(--bg); padding: 16px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.25s, transform 0.2s; }
.form-submit:hover { background: var(--gold2); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ── FOOTER ── */
.site-footer { background: var(--bg2); border-top: 2px solid var(--gold); padding: 64px 48px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; max-width: 1400px; margin: 0 auto 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-logo img { height: 36px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn { width: 38px; height: 38px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 14px; transition: all 0.2s; }
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,0.08); }
.footer-col-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a { font-size: 14px; color: var(--gray); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links-list a:hover { color: var(--gold); }
.footer-links-list a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { color: var(--gold); font-size: 16px; margin-top: 2px; }
.footer-contact-text { font-size: 14px; color: var(--gray); line-height: 1.7; }
.footer-contact-text a { color: var(--gray); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy-text { font-size: 13px; color: var(--dim); }

/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-inner { padding: 0 24px; }
}
@media (max-width: 900px) {
  .section { padding: 64px 24px; }
  .top-bar { padding: 10px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lb-inner { flex-direction: column; }
  .lb-img-wrap { max-width: 90vw; }
  .lb-info { min-width: unset; }
  .lb-nav.prev { left: 8px; }
  .lb-nav.next { right: 8px; }
}
@media (max-width: 768px) {
  .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
  .nav-item { display: none; }
  .burger { display: flex; }
  .top-bar { flex-direction: column; gap: 10px; padding: 12px 20px; text-align: center; }
  .top-right { justify-content: center; }
  .slider-section { height: 70vh; }
  .slide-content { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .site-footer { padding: 48px 24px 0; }
  .divider-section { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
}
