:root {
  --bg: #0b0b0c;
  --surface: #151517;
  --text: #f3f2ef;
  --muted: #c2bfb8;
  --accent: #c6242d;
  --accent-2: #8f131a;
  --border: #2a2a2f;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #1c1c22 0%, var(--bg) 45%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.section-wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(rgba(8,8,10,.6), rgba(8,8,10,.95)), url("public/hero-800h.jpeg") center/cover no-repeat;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(6px);
}

.brand img {
  width: 120px;
  border-radius: .25rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: .5rem .75rem;
  border-radius: .4rem;
}

.menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.menu a:hover { color: var(--text); }

.hero-content {
  padding: 5rem 0 4.5rem;
}

.tag {
  display: inline-block;
  font-family: Oswald, sans-serif;
  letter-spacing: .08em;
  color: var(--accent);
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Oswald, sans-serif;
  letter-spacing: .02em;
  margin: 0 0 .75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 16ch;
  line-height: 1.1;
}

.hero-content p { max-width: 62ch; color: var(--muted); }

.hero-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.button {
  text-decoration: none;
  font-weight: 700;
  padding: .7rem 1rem;
  border-radius: .4rem;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover { background: var(--accent-2); }
.button-outline { background: transparent; }
.button-outline:hover { background: #ffffff0f; }

.section {
  padding: 4rem 0 1rem;
}

.info-box {
  margin-top: 1rem;
  border-left: 4px solid var(--accent);
  background: var(--surface);
  padding: .8rem 1rem;
}

.section-head p,
.section p { color: var(--muted); }

.card-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card,
.gallery-item {
  background: linear-gradient(160deg, #1f1f26 0%, #151518 100%);
  border: 1px solid var(--border);
  border-radius: .6rem;
  overflow: hidden;
}

.card-content { padding: .9rem; }
.card p { margin: .4rem 0 0; color: var(--muted); }
.card .role { color: var(--accent); font-weight: 700; }

.placeholder-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(45deg, #2a2a31, #2a2a31 10px, #232329 10px, #232329 20px);
  color: #ddd;
  font-weight: 600;
}

.gallery-caption { padding: .7rem .9rem; color: var(--muted); }

code {
  background: #ffffff12;
  border: 1px solid var(--border);
  padding: .1rem .35rem;
  border-radius: .3rem;
}

.placeholder { color: #e2a5aa; }

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

.contact-links a {
  text-decoration: none;
  border: 1px solid var(--border);
  padding: .55rem .8rem;
  border-radius: .35rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 3rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .menu {
    display: none;
    position: absolute;
    top: 4.1rem;
    right: 1.2rem;
    flex-direction: column;
    padding: .8rem;
    background: #101013f4;
    border: 1px solid var(--border);
    border-radius: .5rem;
  }
  .menu.open { display: flex; }
  .hero-content { padding-top: 3rem; }
  .footer { flex-direction: column; align-items: flex-start; }
}
