:root { --max: 1080px; }

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: #111;
  background: #fff;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 16px; }

.header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header .container { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 12px 16px; }

.name { font-weight: 700; font-size: 18px; }
.tagline { font-size: 12px; color: rgba(0,0,0,0.65); }

.nav { display: flex; gap: 14px; align-items: center; }
.nav a { text-decoration: none; color: #111; font-size: 14px; }
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff !important;
}
.btn.ghost { background: transparent; color: #111 !important; border: 1px solid rgba(0,0,0,0.2); }

.hero { padding: 28px 0 10px; }
.hero-grid { display: grid; gap: 18px; grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.hero h1 { margin: 0 0 8px; font-size: 34px; letter-spacing: -0.5px; }
.hero p { margin: 0 0 14px; color: rgba(0,0,0,0.72); }
.hero a { color: #111; }
.cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hint { font-size: 12px; color: rgba(0,0,0,0.55); margin-top: 8px; }

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
}

.section { padding: 34px 0; }
.section.alt { background: rgba(0,0,0,0.03); }

h2 { margin: 0 0 8px; font-size: 22px; }
.muted { color: rgba(0,0,0,0.65); margin: 0 0 16px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  background: rgba(0,0,0,0.03);
}

.cards { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); margin-top: 14px; }
.card { border: 1px solid rgba(0,0,0,0.08); border-radius: 14px; padding: 14px; background: #fff; }
.card-title { font-weight: 600; margin-bottom: 6px; }
.card-text { color: rgba(0,0,0,0.7); font-size: 14px; }

.contact-box {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.contact-row { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.contact-row:last-child { border-bottom: 0; }
.label { width: 90px; color: rgba(0,0,0,0.6); }
.contact-box a { color: #111; }
.note { margin-top: 12px; font-size: 13px; color: rgba(0,0,0,0.65); }

.footer { padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.06); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox img { max-width: min(980px, 96vw); max-height: 86vh; border-radius: 12px; background: rgba(255,255,255,0.05); }
.lightbox .close {
  position: fixed; top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 0; background: rgba(255,255,255,0.12);
  color: #fff; font-size: 26px; cursor: pointer;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image img { height: 360px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
}
