@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #0e1116;
  --bg-alt: #151a22;
  --surface: #1c2330;
  --surface-light: #222a39;
  --text: #f2f5f8;
  --muted: #b3bfcc;
  --accent: #ffb347;
  --accent-2: #63d4ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at 10% 10%, rgba(99, 212, 255, 0.2), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 179, 71, 0.2), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 32px 6vw 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 17, 22, 0.92), rgba(14, 17, 22, 0.5));
  z-index: 0;
}

.nav {
  position: absolute;
  top: 24px;
  left: 6vw;
  right: 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 16px;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 24px;
}

.lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #10141a;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 420px;
  border-radius: var(--radius);
  background-image: url("images/jamp2.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 6vw;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 24px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card.highlight {
  background: linear-gradient(140deg, rgba(99, 212, 255, 0.2), rgba(255, 179, 71, 0.2));
}

.services-list {
  display: grid;
  gap: 32px;
}

.service {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.service-media {
  margin: 0;
  width: 100%;
}

.service:nth-child(even) .service-media {
  order: 2;
}

.service:nth-child(even) .card {
  order: 1;
}

.photo {
  min-height: 220px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--surface-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo.is-visible {
  opacity: 1;
  transform: scale(1);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.footer {
  padding: 64px 6vw 40px;
  background: #0b0e13;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--accent-2);
}

.socials {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

.copyright {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(14, 17, 22, 0.95);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .service {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .service:nth-child(even) .service-media,
  .service:nth-child(even) .card,
  .service .service-media,
  .service .card {
    order: 0;
  }

  .service .photo {
    height: clamp(260px, 60vw, 340px);
    aspect-ratio: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 96px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
