/* ===== GLOBAL ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b0b0b;
  color: #ddd;
  overflow-x: hidden;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: #d4af37; text-decoration: none; }
a:hover { text-decoration: underline; }
section { padding: 80px 20px; text-align: center; }

/* Accessibility: skip link (only shows when focused) */
.skip-link{position:absolute;left:-9999px;top:auto}
.skip-link:focus{left:20px;top:20px;background:#fff;color:#000;padding:8px 12px;border-radius:8px;z-index:9999}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  overflow: hidden;
}
.hero .overlay {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(212,175,55,0.10), rgba(0,0,0,0) 60%);
  pointer-events: none;
}

/* LOGO IMAGE */
.dlx-logo-image {
  width: clamp(220px, 40vw, 520px);
  height: auto;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
  animation: fadeIn 1.2s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.tagline {
  color: #c7c7c7;
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  margin-top: 20px;
  z-index: 2;
}
.subtag {
  color: #b8962e;
  font-size: .95rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ===== ABOUT / SECTION HEADINGS ===== */
.about h2,
.philosophy h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: #d4af37;
  margin: 0 0 12px;
}
.about p {
  max-width: 840px;
  margin: 14px auto 0;
  color: #ccc;
  line-height: 1.7;
}

/* ===== PHILOSOPHY ===== */
.philosophy { /* background alternation will handle color; keep layout styles here */ }
.dlx-block {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px; gap: 28px;
}
.dlx-item {
  flex: 1 1 260px;
  max-width: 360px;
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  padding: 26px;
  border-radius: 12px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.dlx-item:hover {
  background: linear-gradient(to bottom right, rgba(212,175,55,0.08), rgba(0,0,0,0.9));
  transform: translateY(-6px);
  border-color: #d4af37;
}
.dlx-item h3 {
  font-family: 'Cinzel Decorative', serif;
  color: #d4af37;
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.dlx-item p { color: #cfcfcf; font-size: 1rem; margin: 0; }

/* ===== GRID / BRAND CARDS ===== */
.dlx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.brand-card {
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.brand-card img { max-width: 140px; height: auto; opacity: .92; margin: 0 auto 10px; }
.brand-card h4 {
  margin: 8px 0 6px;
  color: #d4af37;
  font-family: 'Cinzel Decorative', serif;
}
.brand-card p { color: #cfcfcf; font-size: .95rem; margin: 0; }
.brand-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
  background: linear-gradient(180deg, rgba(212,175,55,.07), #0a0a0a 60%);
}

/* ===== LISTS ===== */
.dlx-list { list-style: none; padding: 0; max-width: 840px; margin: 16px auto 0; text-align: left; }
.dlx-list li { padding: 12px 0; border-bottom: 1px solid #242424; }
.dlx-list li:last-child { border-bottom: 0; }

/* ===== LEADERSHIP ===== */
.leader-wrap { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; margin-top: 20px; }
.leader {
  background: #0f0f0f; border: 1px solid #2c2c2c; border-radius: 12px; padding: 20px; width: 260px;
}
.leader img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; }
.leader h3 { font-family: 'Cinzel Decorative', serif; color: #d4af37; margin: 10px 0 6px; }
.leader p { color: #cfcfcf; font-size: .95rem; margin: 0; }

/* ===== NEWS ===== */
.news .news-list { max-width: 840px; margin: 0 auto; text-align: left; }
.news article { padding: 16px 0; border-bottom: 1px solid #242424; }
.news article:last-child { border-bottom: 0; }
.news time { color: #aaa; font-size: .9rem; display: block; margin-bottom: 4px; }
.news h4 { margin: 0 0 6px; color: #e3e3e3; }

/* ===== CONTACT ===== */
.contact h2 { font-family: 'Cinzel Decorative', serif; color: #d4af37; }
.contact a { color: #d4af37; }
.contact a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #2c2c2c;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
  background: #0a0a0a;
  text-align: center;
}

/* ===== ALTERNATING SECTION BACKGROUNDS ===== */
/* Applies only to main content sections; hero & footer remain as-is */
main > section:nth-of-type(odd) { background: #0b0b0b; }  /* dark */
main > section:nth-of-type(even) { background: #111; }    /* slightly lighter */

/* ===== INVESTMENT CRITERIA: CENTER EVERYTHING ===== */
.about.criteria,
.about.criteria * { text-align: center; }
.about.criteria .dlx-list { margin-left: auto; margin-right: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
  section { padding: 64px 16px; }
  .leader { width: 100%; max-width: 420px; }
}

/* ===== INVESTMENT CRITERIA: COMFORTABLE LINE LENGTH ===== */
.about.criteria .dlx-list {
  max-width: 640px;          /* narrower container */
  margin-left: auto;
  margin-right: auto;
}
.about.criteria .dlx-list li {
  max-width: 58ch;           /* cap each line by characters */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Slightly tighter on very wide screens */
@media (min-width: 1200px) {
  .about.criteria .dlx-list { max-width: 560px; }
}
