/* --- BRAND CONSTANTS --- */
:root {
  --gold: #b8860b;
  --gold-light: #d4af37;
  --charcoal: #1a1d23;
  --charcoal-light: #2a2e35;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-900: #0f172a;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* --- HEADER / NAV --- */
header {
  position: fixed; top: 0; width: 100%; height: 80px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200); z-index: 1000;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.logo-text span { display: block; font-family: 'Playfair Display', serif; font-weight: 900; line-height: 1; }
.logo-name { font-size: 1.25rem; color: var(--charcoal); }
.logo-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; font-weight: 900; text-transform: uppercase; }

nav ul { display: flex; gap: 40px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-500); }
nav a { color: var(--slate-500); }
nav a:hover, nav a.active { color: var(--gold); }

.btn-call {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: white; padding: 12px 28px; border-radius: 2px;
  font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(184, 134, 11, 0.3); color: white; }

/* --- HAMBURGER (mobile) --- */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--charcoal);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  background: var(--charcoal); color: white; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1582483339917-93923f833bff?w=1600&h=900&fit=crop&q=80') center/cover no-repeat;
  opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--charcoal) 30%, rgba(26,29,35,0.5) 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 760px; padding: 80px 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184, 134, 11, 0.15); border: 1px solid rgba(184, 134, 11, 0.35);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 2rem;
  font-size: 0.65rem; font-weight: 900; text-transform: uppercase; color: var(--gold); letter-spacing: 0.2em;
  font-family: 'Inter', sans-serif;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; flex-shrink: 0; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.92; margin-bottom: 2rem; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.15rem; color: var(--slate-400); margin-bottom: 3rem; font-weight: 300; max-width: 540px; line-height: 1.7; }

/* --- BUTTONS --- */
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; background: var(--gold); color: white;
  padding: 16px 40px; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; border: 2px solid var(--gold); border-radius: 2px;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.3);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-3px); box-shadow: 0 14px 36px rgba(184, 134, 11, 0.4); color: white;
}
.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block; background: transparent; color: white;
  padding: 16px 40px; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; border: 2px solid rgba(255,255,255,0.6); border-radius: 2px;
  cursor: pointer; transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover {
  background: white; color: var(--charcoal); border-color: white;
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

/* --- TYPOGRAPHY --- */
.main-heading {
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--charcoal); margin-bottom: 2rem;
  line-height: 1.05; font-family: 'Playfair Display', serif; text-transform: uppercase;
}
.main-heading span { color: var(--gold); font-style: italic; }

.subpage-header {
  font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--charcoal); line-height: 1;
  text-transform: uppercase; font-family: 'Playfair Display', serif;
}
.subpage-header span { color: var(--gold); font-style: italic; }

/* --- SECTIONS --- */
.section-padding { padding: 100px 0; }
.section-white { background: var(--white); }
.section-slate { background: var(--slate-50); }
.section-intro { margin-bottom: 60px; }

/* --- PAGE HERO --- */
.page-hero { padding: 160px 0 80px; }
.page-hero-inner { max-width: 700px; }
.page-hero-sub { font-size: 1.1rem; color: var(--slate-500); font-weight: 300; margin-top: 1.5rem; line-height: 1.7; }

/* --- PRODUCT CARDS --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.product-card { background: white; }
.img-wrap { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 1.5rem; background: var(--slate-100); }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.5s, transform 0.5s; }
.product-card:hover img { filter: grayscale(0%); transform: scale(1.05); }
.product-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.product-card p { color: var(--slate-500); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }
.gold-line { width: 40px; height: 3px; background: var(--gold); margin-top: 1rem; }

/* --- VALUES (HOME) --- */
.prestige-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.prestige-sub { color: var(--slate-500); margin-bottom: 2rem; max-width: 480px; font-weight: 300; font-size: 1rem; }

.value-card {
  background: white; padding: 36px 40px; border-left: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04); margin-bottom: 28px; transition: transform 0.3s ease;
}
.value-card:last-child { margin-bottom: 0; }
.value-card:hover { transform: translateX(8px); }
.value-card h4 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.75rem; }
.value-card p { color: var(--slate-500); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }

/* --- VALUE CARDS (ABOUT ALT) --- */
.value-card-alt {
  background: white; padding: 40px; text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 3px solid transparent;
}
.value-card-alt:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-bottom-color: var(--gold); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(184,134,11,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  color: var(--gold);
}
.value-card-alt h4 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.value-card-alt p { color: var(--slate-500); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }

/* --- STATS --- */
.stats-strip { display: flex; gap: 60px; padding-top: 40px; border-top: 1px solid var(--slate-200); }
.stat-item { display: flex; flex-direction: column; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--gold); font-weight: 900; line-height: 1; }
.stat-lab { font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-400); margin-top: 6px; }

/* --- ABOUT PAGE --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 600px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--charcoal); padding: 24px 32px; text-align: center;
  border-bottom: 4px solid var(--gold);
}
.about-img-badge .stat-val { font-size: 2rem; }
.about-text p { color: var(--slate-500); font-size: 1rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }
.about-text p:last-of-type { margin-bottom: 0; }

/* --- SERVICES PAGE --- */
.services-grid { display: flex; flex-direction: column; gap: 80px; }
.service-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-card-reverse { direction: rtl; }
.service-card-reverse > * { direction: ltr; }
.service-img { overflow: hidden; aspect-ratio: 4/3; }
.service-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter 0.4s, transform 0.4s; }
.service-card:hover .service-img img { filter: grayscale(0%); transform: scale(1.04); }
.service-num { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--slate-200); font-weight: 900; line-height: 1; display: block; margin-bottom: -0.5rem; }
.service-body h3 { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 1rem; }
.service-body p { color: var(--slate-500); font-size: 1rem; font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 0.85rem; color: var(--slate-500); padding-left: 1.25rem; position: relative; font-weight: 400;
}
.service-features li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* --- CTA SECTION --- */
.cta-section {
  background: var(--charcoal); padding: 100px 0;
  border-top: 6px solid var(--gold);
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1.5rem; }
.cta-inner h2 span { color: var(--gold); font-style: italic; }
.cta-inner p { color: var(--slate-400); font-size: 1rem; font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; }

/* --- CONTACT PAGE --- */
.contact-info-centered { max-width: 1000px; margin: 0 auto; }

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.info-card-large {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-bottom: 3px solid var(--gold);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.info-icon-large {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(184,134,11,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.info-card-large h4 {
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold);
  font-family: 'Inter', sans-serif; margin: 0;
}
.info-card-large p {
  color: var(--slate-500); font-size: 1rem; font-weight: 300; line-height: 1.7; margin: 0;
}
.info-card-large a { color: var(--slate-500); }
.info-card-large a:hover { color: var(--gold); }

.map-embed-full {
  border: 1px solid var(--slate-200);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

/* --- FOOTER --- */
footer {
  padding: 90px 0 40px; background: var(--charcoal);
  color: white; border-top: 5px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 60px; }
.footer-brand { font-weight: 900; font-size: 1.4rem; color: white; margin-left: 4px; }
.footer-info .logo { margin-bottom: 1.5rem; }
.footer-info p { color: var(--slate-400); font-size: 0.9rem; font-weight: 300; line-height: 1.7; margin-top: 0; }

.footer-col h5 {
  font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 900;
  margin-bottom: 2.5rem; font-family: 'Inter', sans-serif; position: relative; display: inline-block;
}
.footer-col h5::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 28px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--slate-400); font-weight: 300; }
.footer-col ul li strong { color: var(--gold); display: block; margin-bottom: 4px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 900; font-family: 'Inter', sans-serif; }

.socials { display: flex; gap: 12px; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--slate-400);
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.copyright {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: var(--slate-400); font-weight: 300;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .prestige-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 560px; }
  .service-card { grid-template-columns: 1fr; gap: 30px; }
  .service-card-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .btn-call { display: none; }
  .hamburger { display: flex; }

  nav {
    position: fixed; top: 80px; left: 0; width: 100%;
    background: white; border-bottom: 1px solid var(--slate-200);
    padding: 20px 2rem 30px; transform: translateY(-120%);
    transition: transform 0.3s ease; z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  nav.open { transform: translateY(0); }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li a { display: block; padding: 14px 0; font-size: 0.9rem; border-bottom: 1px solid var(--slate-100); }

  .hero-content { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-strip { gap: 30px; flex-wrap: wrap; }
  .info-cards-grid { grid-template-columns: 1fr; }
  .span-full-mobile { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .copyright { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero { padding: 130px 0 60px; }
  .services-grid { gap: 60px; }
  .about-img-wrap img { height: 380px; }
  .about-img-badge { right: 10px; bottom: -10px; }
}