* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
  color: #ffffff;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Background */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('background.png') center center / cover no-repeat;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: -1;
}

/* Main container */
.container {
  max-width: 1200px;
  padding: 60px 40px 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
}

.logo-img {
  max-height: 48px;
  width: auto;
}

.logo-text .brand {
  font-family: 'Marcellus', serif;
  font-size: 26px;
  letter-spacing: 2px;
}

.logo-text .subbrand {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.8;
}

/* Hero */
.hero h1 {
  font-family: 'Marcellus', serif;
  font-size: 44px;
  line-height: 1.25;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero p {
  max-width: 700px;
  line-height: 1.6;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0 60px;
  font-size: 14px;
}

.services div {
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 10px;
  min-width: 200px;
}

/* Reduced space before footer: EXACT 100px */
.contact {
  margin-bottom: 0px;
}

.request {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.email {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}

.email:hover {
  text-decoration: underline;
}

/* Fluid full-width footer */
.fluid-footer {
  width: 100%;
  padding: 60px 40px 60px;
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.75;
}

.fluid-footer .legal {
  margin-bottom: 14px;
}

/* Bottom bar */
.footer-bar {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .services {
    flex-direction: column;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 40px 20px 40px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .fluid-footer {
    padding: 50px 20px 50px;
  }
}
