/* ── MACHELLUN CONSULTING LLC – GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

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

:root {
  --white:     #ffffff;
  --off-white: #fafaf8;
  --gray-50:   #f5f5f3;
  --gray-100:  #ebebea;
  --gray-200:  #d4d4d2;
  --gray-400:  #9b9b98;
  --gray-600:  #5a5a58;
  --gray-800:  #2a2a28;
  --gold:      #c9a44a;
  --gold-light:#e8c96b;
  --gold-pale: #f9f0d8;
  --gold-dark: #a6882e;
  --navy:      #071a3e;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Outfit', system-ui, sans-serif;
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       0.32s;
  --header-h:  72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--white);
  letter-spacing: -0.5px; flex-shrink: 0;
}
.logo-name {
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--gray-800); line-height: 1.1;
}
.logo-name small {
  display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 400;
  color: var(--gray-400); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--gray-600);
  padding: 8px 14px; border-radius: 6px; transition: color var(--dur), background var(--dur);
}
.nav-links a:hover, .nav-links a.active { color: var(--gray-800); background: var(--gray-50); }
.nav-links a.nav-cta {
  background: var(--gold); color: var(--white); font-weight: 500; margin-left: 8px;
  padding: 9px 22px;
}
.nav-links a.nav-cta:hover { background: var(--gold-dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 14.5px; font-weight: 500;
  padding: 13px 34px; border-radius: 7px; transition: all var(--dur) var(--ease);
  cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,164,74,.3); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--gray-800); border: 1.5px solid var(--gray-200); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-white { background: var(--white); color: var(--gold-dark); font-weight: 600; }
.btn-white:hover { background: var(--gold-pale); }

/* ── SECTION WRAPPER ── */
.section { padding: 96px 2rem; }
.section-sm { padding: 64px 2rem; }
.wrap { max-width: 1320px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }
.wrap-mid { max-width: 1080px; margin: 0 auto; }

/* ── SECTION LABELS ── */
.label {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.heading-xl {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.1; color: var(--gray-800); margin-bottom: 20px;
}
.heading-lg {
  font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--gray-800); margin-bottom: 16px;
}
.heading-md {
  font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600; line-height: 1.25; color: var(--gray-800); margin-bottom: 12px;
}
.body-text { font-size: 15px; line-height: 1.8; color: var(--gray-600); font-weight: 300; }
.body-text-sm { font-size: 13.5px; line-height: 1.75; color: var(--gray-600); }

/* ── DIVIDER ── */
.gold-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 14px; padding: 36px; box-shadow: var(--shadow-xs);
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,164,74,.25); }
.card-gray { background: var(--gray-50); border-color: transparent; }
.card-gray:hover { background: var(--white); border-color: rgba(201,164,74,.2); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy); padding: 72px 2rem 32px;
  border-top: 3px solid var(--gold);
}
.footer-wrap { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media(max-width:540px){ .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-name {
  font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 24px; max-width: 280px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.4); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity:0; transform: scale(.95); } to { opacity:1; transform: scale(1); } }
@keyframes slideRight { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; margin-top: var(--header-h); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.slide.active { opacity: 1; z-index: 2; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 65%, transparent 100%);
}
.slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 5rem; max-width: 760px;
}
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,164,74,.18); border: 1px solid rgba(201,164,74,.5);
  padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
  font-size: 11px; font-weight: 600; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase;
}
.slide-title {
  font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.slide-sub { font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.7; font-weight: 300; margin-bottom: 36px; max-width: 520px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-controls {
  position: absolute; bottom: 40px; left: 5rem; z-index: 10; display: flex; gap: 10px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35);
  cursor: pointer; border: none; transition: all .3s; padding: 0;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.slider-arrows {
  position: absolute; bottom: 32px; right: 5rem; z-index: 10; display: flex; gap: 10px;
}
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: all .2s; backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }

/* ── STAT BAR ── */
.stat-bar { background: var(--gold); padding: 0 2rem; }
.stat-bar-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  padding: 28px 24px; text-align: center; position: relative;
}
.stat-item + .stat-item::before {
  content:''; position:absolute; left:0; top:20%; height:60%;
  width:1px; background:rgba(255,255,255,.25);
}
.stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 420px; overflow: hidden;
  margin-top: var(--header-h); display: flex; align-items: center;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 70%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 5rem; }
.page-hero-content .label { color: var(--gold-light); }
.page-hero-content h1 {
  font-family: var(--serif); font-size: clamp(2.8rem,5vw,4.5rem);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-top: 8px;
}
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,.7); margin-top: 14px; max-width: 520px; font-weight: 300; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 16px 2rem; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.breadcrumb-inner { max-width: 1320px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--gray-400); }
.breadcrumb-inner a { color: var(--gold); }
.breadcrumb-inner span { color: var(--gray-200); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; } .mb-64 { margin-bottom: 64px; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .slide-content { padding: 0 2rem; }
  .slider-controls, .slider-arrows { left: 2rem; }
  .slider-arrows { right: 2rem; }
  .page-hero-content { padding: 0 2rem; }
  .stat-bar-inner { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
}
