:root {
  --bg: #12100e;
  --bg-elevated: #1a1714;
  --ink: #f3eee6;
  --ink-muted: #b7aea1;
  --accent: #e85d2a;
  --accent-soft: rgba(232, 93, 42, 0.18);
  --line: rgba(243, 238, 230, 0.12);
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

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

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(232, 93, 42, 0.16), transparent 55%),
    radial-gradient(90% 70% at 90% 10%, rgba(90, 120, 150, 0.12), transparent 50%),
    linear-gradient(180deg, #161310 0%, var(--bg) 45%, #0e0c0a 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.glow-a {
  width: min(50vw, 28rem);
  height: min(50vw, 28rem);
  top: 8%;
  left: -8%;
  background: rgba(232, 93, 42, 0.35);
}

.glow-b {
  width: min(45vw, 24rem);
  height: min(45vw, 24rem);
  top: 35%;
  right: -10%;
  background: rgba(70, 95, 120, 0.4);
  animation-delay: -6s;
}

.scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.55) 3px,
    transparent 4px
  );
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.brand-nav {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  max-width: min(14rem, 48vw);
}

.brand-nav-logo {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 6.5rem var(--pad) 4rem;
  overflow: hidden;
}

.hero-plane {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(18, 16, 14, 0.55) 55%, var(--bg) 92%),
    linear-gradient(115deg, rgba(232, 93, 42, 0.12) 0%, transparent 42%),
    radial-gradient(ellipse 80% 55% at 70% 35%, rgba(255, 200, 140, 0.08), transparent 60%);
  animation: drift 22s ease-in-out infinite alternate;
}

.hero-plane::after {
  content: "";
  position: absolute;
  inset: 12% 8% auto auto;
  width: min(55vw, 32rem);
  height: min(40vw, 22rem);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  transform: rotate(-6deg);
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  animation: rise 0.9s ease-out both;
}

.brand-mark {
  margin: 0 0 1.25rem;
  line-height: 0;
}

.brand-mark-logo {
  width: min(100%, 36rem);
  height: auto;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.2vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0.15rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-primary {
  background: var(--accent);
  color: #1a0f0a;
}

.cta-primary:hover {
  background: #ff6d38;
  color: #1a0f0a;
}

.cta-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.cta-ghost:hover {
  border-color: rgba(243, 238, 230, 0.35);
  color: var(--ink);
}

.section {
  padding: 5rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  animation: rise 0.85s ease-out both;
  animation-delay: 0.12s;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.section-lede {
  margin: 0 0 2.5rem;
  max-width: 36rem;
  color: var(--ink-muted);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.service-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.service-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.about {
  border-top: 1px solid var(--line);
}

.about-text {
  margin: 0;
  max-width: 40rem;
  font-size: 1.15rem;
  color: var(--ink-muted);
}

.contact {
  border-top: 1px solid var(--line);
  padding-bottom: 4rem;
}

.contact .cta-row {
  margin-top: 0.5rem;
}

.map-widget {
  margin-top: 2.5rem;
  max-width: 40rem;
  width: 100%;
}

.map-widget .dg-widget-link {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.map-widget iframe,
.map-widget > div:last-of-type {
  max-width: 100%;
}

.footer-social a {
  text-decoration: none;
}

.site-footer {
  padding: 2.5rem var(--pad) 3rem;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer-brand {
  margin: 0 0 0.75rem;
}

.footer-logo {
  width: min(100%, 16rem);
  height: auto;
}

.site-footer p {
  margin: 0.25rem 0;
}

.footer-domains a {
  text-decoration: none;
}

.footer-copy {
  margin-top: 1rem !important;
  opacity: 0.75;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -3%, 0) scale(1.04);
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 0.85rem;
  }

  .hero {
    align-items: center;
    padding-bottom: 3rem;
  }

  .brand-mark-logo {
    width: min(100%, 22rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-content,
  .section,
  .glow,
  .hero-plane {
    animation: none;
  }
}
