@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400;1,600;1,700&family=IBM+Plex+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #06080B;
  --bg-surface: #0C1017;
  --bg-raised: #121824;
  --bg-card: #172030;
  
  --border-subtle: #243044;
  --border-strong: #3B4D6C;
  
  --text-main: #FFFFFF;
  --text-muted: #CBD5E1;
  --text-dim: #94A3B8;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  --accent-blue: #0052CC;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  
  --max-width: 1280px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-luxury: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --gold-gradient: linear-gradient(135deg, #FFF0C2 0%, #D4AF37 45%, #997A15 80%, #E6CA65 100%);
  --rope-pattern: repeating-linear-gradient(45deg, #D4AF37, #D4AF37 4px, #06080B 4px, #06080B 8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1C2638; border-radius: 4px; border: 1px solid var(--accent-gold); }

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 90px; /* Precise Sticky Header Offset */
  overflow-x: hidden; 
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-main);
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.25;
}

.luxury-text, em {
  font-family: var(--font-luxury);
  font-style: italic;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

.wrap { 
  width: 100%; 
  max-width: var(--max-width); 
  margin: 0 auto; 
  padding: 0 32px; 
}

.mono { 
  font-family: var(--font-mono); 
  text-transform: uppercase; 
  letter-spacing: 0.14em; 
  font-size: 12px; 
  color: var(--accent-gold); 
}

/* Global Header Nav */
header {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  background: rgba(6, 8, 11, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.nav {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 18px 0; 
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo { height: 48px; width: 48px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.brand-name { 
  font-family: var(--font-heading); 
  font-size: 22px; 
  font-weight: 700; 
  color: var(--text-main); 
  letter-spacing: 0.05em; 
  line-height: 1.1;
}
.brand-name span { 
  display: block; 
  font-family: var(--font-mono); 
  font-size: 9px; 
  color: var(--accent-gold); 
  letter-spacing: 0.2em; 
  margin-top: 2px;
}

nav.links { display: flex; gap: 28px; align-items: center; }
nav.links a { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--text-muted); 
  transition: var(--transition); 
  letter-spacing: 0.03em;
  white-space: nowrap;
}
nav.links a:hover, nav.links a.active { color: var(--accent-gold); }

/* Hamburger Menu Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1050;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.mobile-drawer-header {
  display: none;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1001;
}

/* Buttons */
.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  padding: 12px 24px; 
  background: var(--gold-gradient); 
  color: #000000;
  font-family: var(--font-body); 
  font-weight: 700; 
  font-size: 13px;
  border-radius: var(--radius-sm); 
  border: none; 
  cursor: pointer;
  transition: var(--transition); 
  text-transform: uppercase; 
  letter-spacing: 0.08em;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  white-space: nowrap;
}
.btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45); 
}
.btn-outline { 
  background: transparent; 
  color: var(--text-main); 
  border: 1px solid var(--accent-gold); 
  box-shadow: none; 
}
.btn-outline:hover { 
  background: var(--accent-gold-glow); 
  color: var(--accent-gold-light); 
}

/* Hero Section */
.hero { 
  padding: 80px 0 60px; 
  position: relative; 
  background: radial-gradient(circle at top right, rgba(0,82,204,0.15), transparent 60%); 
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: 48px; 
  align-items: center; 
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.eyebrow { 
  color: var(--accent-gold); 
  font-weight: 600; 
  margin-bottom: 20px; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent-gold); }

h1.headline { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.15; margin-bottom: 24px; }
p.lead { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; max-width: 52ch; font-weight: 400; }

.photo-frame {
  width: 100%; 
  border-radius: var(--radius-md);
  padding: 4px;
  background: var(--rope-pattern);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  position: relative; 
  overflow: hidden;
}

/* Page Section Utility */
.section-pad { padding: 80px 0; border-bottom: 1px solid var(--border-subtle); }
.section-pad.raised { background: var(--bg-surface); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 16px; font-family: var(--font-luxury); }
.section-head p { color: var(--text-muted); font-size: 16px; }

/* Cards Grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.detail-grid { grid-template-columns: 2fr 1fr; margin-top: 40px; }

/* Reconciliation Bar Chart Visual */
.visual-graphic {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  width: 100%;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 180px;
  margin: 20px 0;
}
.bar {
  flex: 1;
  min-width: 0;
  background: var(--border-strong);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}
.bar.active {
  background: var(--gold-gradient);
}
.card {
  background: var(--bg-raised); 
  padding: 34px 26px; 
  border-radius: var(--radius-md); 
  transition: var(--transition);
  position: relative; 
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card::before {
  content: ''; 
  position: absolute; 
  inset: 4px;
  border: 2px dashed var(--accent-gold); 
  opacity: 0.3;
  pointer-events: none; 
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.card:hover::before {
  opacity: 0.85;
  border-style: solid;
  box-shadow: inset 0 0 12px var(--accent-gold-glow);
}

.card:hover { 
  border-color: var(--accent-gold); 
  transform: translateY(-6px); 
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.18); 
}

.card h3 { 
  font-size: 26px; 
  margin-bottom: 12px; 
  font-family: var(--font-luxury); 
  color: var(--text-main); 
}
.card p { 
  color: var(--text-muted); 
  font-size: 15px; 
  margin-bottom: 20px; 
  line-height: 1.6; 
}

/* Luxury Consultation Form */
.consult-form-container {
  background: var(--bg-raised); 
  border-radius: var(--radius-lg); 
  padding: 36px; 
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  position: relative;
  border: 2px double var(--accent-gold);
  outline: 1px dashed var(--accent-gold);
  outline-offset: -6px;
  width: 100%;
}

.consult-form-container h2 {
  font-family: var(--font-luxury);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--text-main);
  margin-bottom: 8px;
}

.consult-form-container p.form-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
  margin-bottom: 20px; 
}

.field { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.field.full { grid-column: 1 / -1; }

.field label { 
  font-size: 11px; 
  font-family: var(--font-mono); 
  color: var(--accent-gold); 
  text-transform: uppercase; 
  letter-spacing: 0.12em; 
  font-weight: 600; 
}

.field input, 
.field select, 
.field textarea {
  background: #090D14; 
  border: 1px solid var(--border-strong);
  color: var(--text-main); 
  padding: 14px; 
  font-size: 15px; 
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  outline: none; 
  transition: var(--transition); 
  width: 100%;
  max-width: 100%;
}

.field select option {
  background-color: #0C1017;
  color: #FFFFFF;
}

.field input::placeholder, 
.field textarea::placeholder { color: #64748B; }

.field input:focus, 
.field select:focus, 
  .field textarea:focus {
  border-color: var(--accent-gold); 
  background: var(--bg); 
  box-shadow: 0 0 12px var(--accent-gold-glow);
}

/* Modal System */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 9, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: var(--accent-gold);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

/* Footer Styling */
footer { background: var(--bg); border-top: 1px solid var(--border-subtle); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-bottom { 
  border-top: 1px solid var(--border-subtle); 
  padding-top: 24px; 
  display: flex; 
  justify-content: space-between; 
  color: var(--text-dim); 
  font-size: 13px; 
}

/* RESPONSIVE DESIGN (MOBILE, TABLET & LAPTOP) */
@media (max-width: 1024px) {
  .wrap { padding: 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-row { justify-content: center; }
  .eyebrow { justify-content: center; }
  p.lead { margin-left: auto; margin-right: auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-toggle {
    display: flex;
  }

  nav.links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-strong);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  }

  nav.links.active {
    right: 0 !important;
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 12px;
  }

  .drawer-close {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 28px;
    cursor: pointer;
  }

  .nav-backdrop.active {
    display: block !important;
  }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
  .wrap { padding: 0 16px; }

  .hero { padding: 40px 0 30px; }
  h1.headline { font-size: 30px; line-height: 1.2; }
  p.lead { font-size: 15px; margin-bottom: 24px; }
  
  .section-pad { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }
  
  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .detail-grid { grid-template-columns: 1fr; }
  .card { padding: 24px 18px; }
  .card h3 { font-size: 22px; }

  .consult-form-container { 
    padding: 20px 14px; 
    outline-offset: -3px;
    border-width: 1px;
  }
  
  .form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  
  .field input, 
  .field select, 
  .field textarea { 
    padding: 12px; 
    font-size: 16px;
    min-height: 46px; 
  }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
