/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0b;
  --bg2: #111114;
  --bg3: #18181c;
  --surface: #1e1e24;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: rgba(201,168,76,0.15);
  --text: #f0ede8;
  --text-muted: #8a8580;
  --text-dim: #4a4845;
  --border: rgba(255,255,255,0.07);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.25rem;
  background: var(--gold);
  color: #0a0a0b;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s, box-shadow var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-dim); transform: translateY(-2px); }
.full-width { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.5) 50%, rgba(10,10,11,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(240,237,232,0.75);
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 3rem 2rem; flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 1rem 3rem; flex: 1; min-width: 140px; }
.stat-item .stat-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.stat-item p { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ===== ABOUT ===== */
.about { padding: 8rem 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-frame {
  aspect-ratio: 3/4; border-radius: 2px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.about-img-frame img { transition: transform 0.8s var(--transition); }
.about-img-frame:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--gold); color: #0a0a0b;
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.badge-year { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-desc { color: rgba(240,237,232,0.75); font-size: 1rem; line-height: 1.8; }
.about-desc strong { color: var(--gold); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.about-tags span {
  padding: 0.35rem 1rem; border: 1px solid var(--border);
  font-size: 0.75rem; letter-spacing: 0.08em;
  border-radius: 2px; color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.about-tags span:hover { border-color: var(--gold); color: var(--gold); }

/* ===== GALLERY ===== */
.gallery-section { padding: 8rem 0; background: var(--bg2); }
.filter-bar { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border: 1px solid var(--border); border-radius: 2px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold); background: var(--gold-dim);
}
.gallery-grid {
  columns: 3; column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.hidden { display: none; }
.gallery-item img { transition: transform 0.6s var(--transition); display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; }
.gallery-info p { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.gallery-zoom {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  color: var(--text); font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0; align-self: flex-end;
}
.gallery-zoom:hover { background: var(--gold); color: #0a0a0b; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
#lightboxCaption { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; letter-spacing: 0.08em; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: var(--text); font-size: 1.8rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: #0a0a0b; }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ===== SERVICES ===== */
.services { padding: 8rem 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  position: relative; padding: 2.5rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg2);
  transition: border-color var(--transition), transform 0.3s, box-shadow var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(201,168,76,0.35); background: var(--bg3); }
.service-badge-popular {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: #0a0a0b;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 2px;
}
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; color: var(--gold); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-price { font-size: 0.85rem; color: var(--text-muted); }
.service-price strong { color: var(--gold); font-size: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 8rem 0; background: var(--bg2); overflow: hidden; }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testi-card {
  min-width: calc(33.333% - 1rem); background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 2.5rem;
  flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1.25rem; letter-spacing: 0.1em; }
.testi-card p { font-family: var(--font-serif); font-size: 1.05rem; color: rgba(240,237,232,0.85); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--gold); flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.75rem; color: var(--text-muted); }
.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: all 0.3s;
}
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CONTACT ===== */
.contact { padding: 8rem 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; justify-content: center; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-item a, .contact-item span { color: var(--text); font-size: 0.95rem; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.85rem 1rem; color: var(--text); font-family: var(--font-sans); font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 0.75rem;
  color: #4caf72; font-size: 0.9rem; padding: 1rem;
  background: rgba(76,175,114,0.1); border: 1px solid rgba(76,175,114,0.25); border-radius: var(--radius);
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; line-height: 1.7; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h5, .footer-social h5 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-links a, .footer-social a { color: rgba(240,237,232,0.65); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover, .footer-social a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-dim);
}
.heart { color: #e05c5c; }

/* ===== SCROLL REVEAL ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .navbar { padding: 1.25rem 1.5rem; }
  .navbar.scrolled { padding: 0.85rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 0; background: rgba(10,10,11,0.97); backdrop-filter: blur(20px); align-items: center; justify-content: center; gap: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1001; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }
  .gallery-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery-grid { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-bar { flex-direction: column; }
}
