:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-accent: #333333;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Smoke Effect Container */
.smoke-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.smoke-blob {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: drift linear infinite;
}

@keyframes drift {
  0% { transform: translateY(10%) translateX(0) scale(1) rotate(0deg); opacity: 0.5; }
  50% { opacity: 1; }
  100% { transform: translateY(-110%) translateX(20%) scale(1.5) rotate(45deg); opacity: 0; }
}

/* Typography & Layout */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

p strong {
  color: var(--color-text);
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: center;
}

.text-center {
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  z-index: 1;
}

.hero-image-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 30%),
              linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%),
              linear-gradient(to top, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%);
}

.hero-content {
  width: 50%;
  padding: 4rem;
  padding-left: 6%;
  animation: fadeUp 2s ease-out forwards;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.hero-content .title {
  font-size: 4rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Content Sections */
.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

/* Lists */
.features-list {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0;
}

.features-list li {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.features-list li:last-child {
  border-bottom: none;
}

/* Image Breaks */
.image-break {
  width: 100%;
  margin: 4rem 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.image-break::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 80px 50px rgba(0,0,0,1);
  pointer-events: none;
  z-index: 1;
}

.image-break img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: all 0.8s ease;
}

.image-break:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Accordion Styles */
.accordion-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1px;
}

.accordion-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.accordion-header .icon {
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 0.4s ease;
  color: var(--color-text-muted);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
  color: #fff;
}

.accordion-header:hover h3, .accordion-header:hover .icon {
  color: #fff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-inner {
  padding-bottom: 2rem;
  padding-right: 1.5rem;
}

.accordion-inner p, .accordion-inner ul, .accordion-inner li {
  font-size: 1rem;
  color: var(--color-text-muted);
}
.accordion-inner p { margin-bottom: 1.2rem; }
.accordion-inner ul { margin-left: 1.5rem; margin-bottom: 1.2rem; }
.accordion-inner li { margin-bottom: 0.5rem; }

/* Footer */
.footer {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  margin: 3rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-info a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }

  .hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
  }
  .hero-content {
    order: 1;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
  }
  .hero-image-container {
    position: relative;
    order: 2;
    width: 100%;
    height: 45%;
    top: auto;
    bottom: auto;
  }
  .hero-subtitle-mobile {
    order: 3;
    padding: 2rem;
    text-align: center;
    z-index: 2;
  }
  .hero-subtitle-mobile .subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--color-text-muted);
  }
  .hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%),
                linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 40%);
  }
  .hero-content .title { font-size: 2.5rem; }
  .details-grid { grid-template-columns: 1fr; gap: 2rem; }
}
