
:root {
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --gold: #d4a843;
  --gold-light: #e8c060;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #888888;
  --text: #e0e0e0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark-2);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.top-bar span { margin: 0 18px; }
.top-bar span::before { content: '✓  '; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(212,168,67,0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; display: block; mix-blend-mode: screen; }

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 8px 16px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(212,168,67,0.1);
}
nav a.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
nav a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--dark);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: var(--dark);
  padding: 20px;
  border-bottom: 1px solid rgba(212,168,67,0.2);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 14px 16px;
  border-radius: 4px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.mobile-nav a.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=800&q=70');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
@media (min-width: 901px) {
  .hero-bg {
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=80');
  }
}
.hero:hover .hero-bg { transform: scale(1.0); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* ── HERO SMALL (inner pages) ── */
.hero-small {
  position: relative;
  height: 42vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-small .hero-bg { filter: brightness(0.3); }
.hero-small .hero-content { animation: none; }
.hero-small h1 { font-size: clamp(1.8rem, 4vw, 3rem); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--gold);
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section { padding: 100px 24px; }
.section-light { background: var(--light); color: var(--dark-2); }
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark-3); }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}
.section-light .section-title { color: var(--dark); }

.section-text {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.8;
}
.section-light .section-text { color: #555; }

/* ── INTRO SECTION ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9);
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.feature:last-child { border-right: none; }
.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 20px;
  opacity: 0.6;
}
.feature h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.feature p { font-size: 0.93rem; color: var(--gray); line-height: 1.75; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.pricing-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,67,0.3);
}
.pricing-card.featured { border-color: var(--gold); }
.pricing-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(0.8);
}
.pricing-body { padding: 36px; display: flex; flex-direction: column; flex: 1; }
.pricing-card { display: flex; flex-direction: column; }
.pricing-desc { flex: 1; }
.pricing-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.pricing-price span { font-size: 0.9rem; color: var(--gray); font-weight: 400; }
.pricing-desc { font-size: 0.95rem; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 4px;
}
.about-img::after { display: none; }

.about-services {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-item {
  padding: 14px 20px;
  background: var(--dark-3);
  border-radius: 3px;
  font-size: 0.95rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
}

/* ── FORM ── */
.form-wrapper {
  max-width: 620px;
  margin: 60px auto 0;
  background: var(--dark-3);
  padding: 52px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,168,67,0.05);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; font-size: 0.85rem; padding: 18px; margin-top: 8px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,168,67,0.15);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--gray); max-width: 260px; line-height: 1.7; }
.footer-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition);
  margin-bottom: 0;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ── DIVIDER ── */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0 40px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold);
  padding: 80px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.cta-strip p { color: rgba(0,0,0,0.65); margin-bottom: 32px; font-size: 1.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  body { padding-top: 70px; }
  header { position: fixed; top: 0; left: 0; right: 0; padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 38px; }
  .mobile-nav { position: fixed; top: 70px; }
  .intro-grid, .about-grid, .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid img { height: 300px; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-img::after { display: none; }
  .form-wrapper { padding: 32px 24px; }

  /* Ticker */
  .top-bar {
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .top-bar span {
    display: block;
    position: absolute;
    margin: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .top-bar span.ticker-active { opacity: 1; }
}
@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .hero h1 { font-size: 2rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero .hero-content { padding-bottom: 80px; }
}
