*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #111111;
  --bg-card: #1a1a1a;
  --bg-card-2: #161e19;
  --bg-card-3: #1e1a16;
  --border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.35);
  --text-mid: rgba(255,255,255,0.55);
  --gold: #c8a43a;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 50px;
}

.nav-brand {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-right:hover { color: var(--text); }
.nav-right svg { width: 13px; height: 13px; }

/* ── HERO ── */
.hero {
  padding: 48px 40px 40px;
  border-bottom: 1px solid var(--border);
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero h1 strong {
  font-weight: 500;
  color: var(--gold);
}

.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 16px;
}

/* ── PANELS ── */
.panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.panel {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.panel:last-child { border-right: none; }

.panel-photo {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.panel:nth-child(2) .panel-photo { background: var(--bg-card-2); }
.panel:nth-child(3) .panel-photo { background: var(--bg-card-3); }

.panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.panel:hover .panel-photo img {
  opacity: 0.85;
  transform: scale(1.04);
}

.panel-photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.08);
  font-size: 48px;
}

.panel-body {
  padding: 22px 24px 28px;
  flex: 1;
}

.panel-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.panel-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CONTACT BAR ── */
.contact-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-bar-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s;
}

.contact-item:hover { color: var(--text); }
.contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .hero { padding: 32px 20px 28px; }
  .hero h1 { font-size: 28px; }
  .panels { grid-template-columns: 1fr; }
  .panel { border-right: none; border-bottom: 1px solid var(--border); }
  .panel:last-child { border-bottom: none; }
  .panel-photo { height: 160px; }
  .contact-bar { padding: 16px 20px; gap: 16px; }
  footer { padding: 14px 20px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

nav          { animation: fadeUp 0.4s ease both; }
.hero        { animation: fadeUp 0.45s 0.05s ease both; }
.panels      { animation: fadeUp 0.45s 0.15s ease both; }
.contact-bar { animation: fadeUp 0.4s 0.25s ease both; }
footer       { animation: fadeUp 0.4s 0.3s ease both; }
