/* basic reset */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f172a;
  color: #0f172a;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* layout */
.container { width: min(1140px, 100% - 2.5rem); margin: 0 auto; }

/* header */
.site-header {
  background: rgba(15, 23, 42, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.header-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo { height: 42px; width: auto; }
.brand-text { line-height: 1.05; color: #fff; }
.brand-name { font-weight: 700; }
.brand-sub { font-size: .7rem; opacity: .7; text-transform: uppercase; }

.main-nav { display: flex; gap: 1.1rem; }
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.main-nav a:hover,
.main-nav a.active { border-color: #fbbf24; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; }

/* hero */
.hero {
  background: #0f172a;
  color: #fff;
  padding: 3.5rem 0 3.3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.6rem;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.eyebrow {
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .08em;
  color: #fde68a;
  margin-bottom: .75rem;
}
.lead { font-size: 1.02rem; max-width: 540px; margin-bottom: 1.4rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .9rem; }
.btn {
  display: inline-block;
  padding: .6rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
}
.btn.primary { background: #fbbf24; color: #0f172a; }
.btn.outline { border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.note { font-size: .75rem; opacity: .9; }
.hero-media {
  background: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(15, 23, 42, .25);
}
.hero-img { width: 100%; height: auto; }

/* sections */
.section { padding: 3.1rem 0; background: #f8fafc; }
.section-alt { background: #e2e8f0; }
.section-header h2 { margin-bottom: .35rem; font-size: 1.8rem; }
.section-header p { color: #475569; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.3rem;
  margin-top: 1.7rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.3rem;
  margin-top: 1.7rem;
}
.card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .07);
}
.card.small p { font-size: .9rem; }

/* CTA panel */
.cta-panel {
  background: #0f172a;
  color: #fff;
  padding: 1.5rem 1.4rem;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

/* page */
.page { padding: 3rem 0 3rem; background: #f8fafc; min-height: 60vh; }
.page-header { margin-bottom: 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.15rem;
}
.gallery-grid img { border-radius: 12px; background: #e2e8f0; }
.form {
  background: #fff;
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  max-width: 520px;
  display: grid;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}
.form label { display: grid; gap: .4rem; font-size: .85rem; }
.form input, .form textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: .55rem .55rem;
  font-size: .9rem;
}
.narrow .container { max-width: 720px; }

/* footer */
.site-footer {
  background: #0f172a;
  color: rgba(248, 250, 252, 0.7);
  padding: 1.4rem 0 2rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-grid a { color: inherit; text-decoration: none; }

/* responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    background: rgba(15, 23, 42, .98);
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    min-width: 160px;
    display: none;
  }
  .main-nav a { padding: .65rem .8rem; }
  .nav-toggle { display: flex; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
