@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #151617;
  --text: #f1f0ed;
  --muted: #b9b6b0;
  --accent: #b9a07a;
  --line: rgba(255,255,255,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
}
.site-header {
  position: absolute;
  z-index: 5;
  top: 0; left: 0; right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(10,10,10,.45), transparent);
}
.mark { color: white; text-decoration: none; display: flex; align-items: center; gap: 18px; }
.mark-line { width: 34px; height: 1px; background: var(--accent); transform: rotate(-35deg); }
.mark-text { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; opacity: .9; }
nav { display: flex; gap: 42px; }
nav a {
  color: #eee;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}
nav a.active, nav a:hover { color: var(--accent); border-color: var(--accent); }

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 150px 8vw 100px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(17,18,18,.92) 0%, rgba(17,18,18,.70) 37%, rgba(17,18,18,.12) 100%),
    linear-gradient(0deg, rgba(17,18,18,.35), rgba(17,18,18,.15)),
    url("hero.jpg") center/cover no-repeat;
}
.hero-content { max-width: 700px; }
.eyebrow {
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  color: var(--accent);
}
h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -.035em;
}
h1 strong { font-weight: 500; }
.rule { display: block; width: 48px; height: 1px; background: var(--accent); margin: 36px 0; }
.intro { max-width: 500px; color: #d0ceca; font-size: 17px; line-height: 1.8; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 90px 8vw;
  border-top: 1px solid var(--line);
  background: #171819;
}
.values article {
  text-align: center;
  padding: 10px 7vw;
  border-right: 1px solid var(--line);
}
.values article:last-child { border-right: 0; }
.icon { color: var(--accent); font-size: 31px; margin-bottom: 22px; }
h2 { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 500; }
.values p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.about { height: 110px; background: #171819; }
footer {
  padding: 34px 8vw;
  border-top: 1px solid var(--line);
  color: #888;
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
}

@media (max-width: 800px) {
  .site-header { height: 78px; padding: 0 6vw; }
  .mark-text { display: none; }
  nav { gap: 18px; }
  nav a { font-size: 10px; }
  .hero { min-height: 720px; padding: 130px 8vw 80px; }
  .values { grid-template-columns: 1fr; padding: 55px 8vw; gap: 45px; }
  .values article { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 40px; }
  .values article:last-child { border-bottom: 0; padding-bottom: 0; }
}
