:root {
  --bg: #050202;
  --text: #ffe9d3;
  --muted: #ffb066;
  --card: rgba(20, 10, 4, 0.78);
  --accent: #ff7a00;
  --accent-dark: #8f2f00;
  --line: rgba(255, 124, 18, 0.35);
  --shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% -8%, rgba(255, 126, 10, 0.4) 0, transparent 38%),
    radial-gradient(circle at 88% 6%, rgba(210, 78, 0, 0.3) 0, transparent 34%),
    linear-gradient(155deg, #000000 0%, #110500 44%, #2b0f00 100%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.45;
  z-index: -1;
}

.orb-one {
  top: -8rem;
  left: -6rem;
  background: #ff7f11;
}

.orb-two {
  right: -8rem;
  bottom: -10rem;
  background: #a33d00;
}

.site-header {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0.35rem;
  border-radius: 0.85rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 160, 94, 0.16);
  color: var(--text);
}

.site-nav a.is-active {
  background: rgba(255, 130, 32, 0.22);
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 0.7rem;
  width: 2.8rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  background: var(--text);
  display: block;
}

main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

.hero {
  padding: 5rem 0 4rem;
  max-width: 44rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Georgia", serif;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
}

.hero-copy {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.75rem;
  padding: 0.72rem 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(130deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.3);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--card);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.1rem;
}

.service-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.service-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1rem;
}

.gallery-hero {
  max-width: 48rem;
}

.gallery-section h2 {
  margin-bottom: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.sample-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.85rem;
}

.sample-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.sample-media {
  min-height: 11rem;
  aspect-ratio: 16 / 10;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 160, 94, 0.32);
  overflow: hidden;
  background: linear-gradient(140deg, #2a1000, #8a2f00);
}

.sample-media img,
.sample-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sample-media video {
  background: #000;
}

.contact {
  text-align: center;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 1.5rem 1rem 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: rise-in 0.75s ease forwards;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.95rem 1rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

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

  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: #140d07;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    min-width: 11rem;
    padding: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 3rem;
  }
}
