@font-face {
  font-family: "Good Times";
  src: url("../images/GoodTimes.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adam Medium";
  src: url("../images/AdamMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07090c;
  --bg2: #0d1117;
  --surface: #141a22;
  --surface2: #1a222d;
  --border: #2a3444;
  --text: #f0f4f8;
  --muted: #9aa8b8;
  --accent: #5b9fd4;
  --accent2: #7ec8e3;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Adam Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent2); text-decoration: none; }
a:hover { color: #fff; }

h1, h2, h3, .display {
  font-family: "Good Times", "Adam Medium", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 12, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  font-size: 0.92rem;
}
.nav-links a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text) !important;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.nav-cta:hover {
  border-color: var(--accent);
  color: var(--white) !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,12,0.55) 0%, rgba(7,9,12,0.82) 55%, var(--bg) 100%),
    url("../images/hero-bg.webp") center / cover no-repeat;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-logo {
  width: min(420px, 86vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}
.hero h1 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.hero-tag {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34rem;
  margin: 0 auto 28px;
  font-family: "Adam Medium", sans-serif;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  font-family: "Adam Medium", sans-serif;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, #6aaee0, #3d7fb0);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(59, 130, 180, 0.28);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text) !important;
}
.btn-ghost:hover { border-color: var(--accent2); }

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
}
.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.section-head p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 36rem;
  font-family: "Adam Medium", sans-serif;
}
.eyebrow {
  color: var(--accent2);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Adam Medium", sans-serif;
}

/* Service cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 800px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: #3a4a5c;
  transform: translateY(-2px);
}
.card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-family: "Adam Medium", sans-serif;
}
.card-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
.gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery figure:hover img { transform: scale(1.04); }

/* About / contact band */
.band {
  background: linear-gradient(180deg, rgba(91,159,212,0.08), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .band-inner { grid-template-columns: 1fr; }
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.contact-list li {
  margin: 10px 0;
  color: var(--muted);
  font-family: "Adam Medium", sans-serif;
}
.contact-list strong {
  color: var(--text);
  display: inline-block;
  min-width: 4.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 56px 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(91,159,212,0.12), transparent 55%),
    var(--bg);
}
.page-hero h1 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.page-hero p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 34rem;
  font-family: "Adam Medium", sans-serif;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 20px 48px;
  margin-top: 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-family: "Adam Medium", sans-serif;
}
.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--white); }
.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

/* Utility */
.prose {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-family: "Adam Medium", sans-serif;
}
.prose h2 {
  color: var(--text);
  margin-top: 2rem;
}
.prose p { margin: 0 0 1rem; }
