/* ===== CUSTOM PROPERTIES & RESET ===== */
:root {
  --black:    #0a0a0a;
  --dark:     #1a1a1a;
  --card:     #242424;
  --gold:     #c8a96e;
  --gold-dim: #8a6e42;
  --cream:    #f5f0e8;
  --cream-dim:#b8b0a0;
  --white:    #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --container: 1200px;
  --section-gap: 7rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}
.gold-divider.align-left { margin-left: 0; }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-gap) 0; }
.section-dark { background: var(--black); }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTON ===== */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.logo-sub { font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream-dim);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid var(--gold) !important; padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius); color: var(--gold) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
  position: relative; height: 100svh; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 860px; }
.hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-tagline { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300; color: rgba(245,240,232,0.82); margin-bottom: 2.75rem; }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2.2s ease-in-out infinite; }
.scroll-arrow { display: block; width: 22px; height: 22px; border-right: 2px solid rgba(200,169,110,0.8); border-bottom: 2px solid rgba(200,169,110,0.8); transform: rotate(45deg); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--card); border: 1px solid rgba(200,169,110,0.12);
  border-radius: 8px; padding: 2.5rem 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(200,169,110,0.6); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
.service-icon {
  width: 64px; height: 64px; border: 1px solid rgba(200,169,110,0.45);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background var(--transition), border-color var(--transition);
}
.service-card:hover .service-icon { background: rgba(200,169,110,0.08); border-color: var(--gold); }
.service-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--cream); margin-bottom: 0.75rem; }
.service-card p { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.65; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius); filter: brightness(0.92) contrast(1.04); }
.about-image-accent {
  position: absolute; bottom: -22px; right: -22px; width: 110px; height: 110px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) 0; pointer-events: none;
}
.about-text p { color: var(--cream-dim); margin-bottom: 1.25rem; font-size: 0.96rem; }
.about-features { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-features li { display: flex; align-items: center; gap: 0.85rem; font-size: 0.9rem; color: var(--cream-dim); }
.feat-check { color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; background: var(--card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: transparent; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.gallery-overlay span { font-size: 2.2rem; color: var(--white); opacity: 0; transition: opacity var(--transition); line-height: 1; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.48); }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); border: 1px solid rgba(200,169,110,0.25); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--cream-dim); font-size: 2.8rem; cursor: pointer; line-height: 1; transition: color var(--transition); font-weight: 300; }
.lightbox-close:hover { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon { width: 46px; height: 46px; border: 1px solid rgba(200,169,110,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; font-weight: 600; }
.contact-item a, .contact-item p { color: var(--cream-dim); font-size: 0.96rem; }
.contact-item a:hover { color: var(--gold); transition: color var(--transition); }
.contact-btn { margin-top: 0.75rem; }
.contact-map iframe { border-radius: var(--radius); border: 1px solid rgba(200,169,110,0.18) !important; filter: grayscale(0.25) brightness(0.82); display: block; }

/* ===== FOOTER ===== */
footer { background: var(--black); border-top: 1px solid rgba(200,169,110,0.12); padding: 2.75rem 0; text-align: center; }
.footer-brand { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.footer-meta, .footer-copy { font-size: 0.78rem; color: var(--cream-dim); letter-spacing: 0.06em; }
.footer-meta { margin-bottom: 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  :root { --section-gap: 4.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1.5rem 1.5rem 2rem; gap: 1.4rem; border-top: 1px solid rgba(200,169,110,0.12); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
