/* ============================================================
   GLOBAL STYLES
   ============================================================ */

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  background: #fff;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── HEADER ── */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.site-logo img { height: 82px; width: auto; }

/* ── NAV ── */
#site-nav { display: flex; gap: 0; }
#site-nav a {
  display: block;
  padding: 0 18px;
  height: 90px;
  line-height: 90px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
#site-nav a:hover,
#site-nav a.active {
  border-bottom-color: #c8a84b;
  color: #c8a84b;
}

/* ── HERO ── */
.hero-slider {
  position: relative;
  width: 100%;
  background: #1c2b4a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slider-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 43, 74, 0.85) 0%,
    rgba(28, 43, 74, 0.55) 60%,
    rgba(28, 43, 74, 0.3) 100%
  );
  z-index: 1;
}
.hero-title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.hero-slider.hero-short { height: 250px; }

/* ── FOOTER ── */
#site-footer {
  background: #1c2b4a;
  border-top: 3px solid #c8a84b;
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-nav { display: flex; gap: 0; }
.footer-nav a {
  display: block;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.footer-nav a:hover {
  color: #c8a84b;
  border-bottom-color: #c8a84b;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */

/* ── INTRO ── */
.detail-intro-wrap {
  padding: 50px 40px 40px;
  border-bottom: 1px solid #e5e5e5;
}
.detail-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.detail-back {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c8a84b;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.detail-back:hover { color: #a8882b; }
.detail-intro-text {
  font-size: 15px;
  line-height: 1.95;
  color: #555;
}

/* ── SERVICE ENTRIES ── */
.detail-entries-wrap {
  padding: 60px 40px;
}
.detail-entries-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 50px 0;
  border-bottom: 1px solid #f0f0f0;
}
.detail-entry:last-child { border-bottom: none; }

.detail-entry-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-entry-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #c8a84b;
  text-transform: uppercase;
}
.detail-entry-title {
  font-size: 20px;
  font-weight: 700;
  color: #1c2b4a;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.detail-entry-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.detail-entry-body p {
  font-size: 14px;
  line-height: 1.95;
  color: #555;
  padding-left: 16px;
  border-left: 3px solid #1c2b4a;
}
.detail-entry-context {
  font-size: 14px;
  line-height: 1.95;
  color: #888 !important;
  font-style: italic;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  border-left: none !important;
  padding-left: 0 !important;
}

/* ── BOTTOM CTA ── */
.detail-cta {
  background: #1c2b4a;
  padding: 60px 40px;
}
.detail-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.detail-cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.detail-cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #c8a84b;
  color: #c8a84b;
  transition: background 0.2s, color 0.2s;
}
.detail-cta-btn:hover {
  background: #c8a84b;
  color: #fff;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  #site-header { padding: 16px 20px; height: auto; flex-direction: column; }
  #site-nav a { padding: 0 10px; height: 44px; line-height: 44px; font-size: 12px; }
  .hero-slider.hero-short { height: 120px; }
  .hero-title { font-size: 18px; letter-spacing: 4px; }
  .detail-entry { grid-template-columns: 1fr; gap: 16px; }
  .detail-cta-inner { flex-direction: column; align-items: flex-start; }
}