:root {
  --bg: #222;
  --ink: #e8eaed;
  --muted: #b0b6c0;
  --card: #2b2b2b;
  --edge: #3a3a3a;
  --accent: #0a4db3;
  --radius: 14px;
  --pad: 22px;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  --maxw: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important; /* Legacy */
  clip-path: inset(50%) !important; /* Modern */
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  color: var(--ink);
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header */
header {
  padding: 32px var(--pad) 10px;
  border-bottom: 1px solid var(--edge);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin: 38px 0;
}

.logo img {
  width: clamp(240px, 42vw, 440px);
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: #fff;
}

.logo a {
  line-height: 0;
}

.tagline {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 820px;
}

/* Sections & Cards */
.section {
  padding: 38px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inner {
  padding: 22px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cell {
  padding: 12px;
  background: #262626;
  border: 1px solid var(--edge);
  border-radius: 12px;
}

.bullet {
  color: var(--muted);
}

.cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  margin-top: 8px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.shot {
  margin: 0;
}

.shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow);
  background: #111;
}

.shot figcaption {
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
  text-align: center;
}

/* Contact */


/* Footer */
footer {
  padding: 40px var(--pad);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--edge);
}

/* Responsive */
@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
  }
}