/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #000000;
  color: #E8E8E8;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: rgba(232, 232, 232, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #948359;
}

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  color: #E8E8E8;
  line-height: 1.2;
}

.section-label {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(232, 232, 232, 0.5);
  margin-bottom: 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.1px;
  color: #E8E8E8;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.6);
  max-width: 560px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 232, 232, 0.06);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #E8E8E8;
  text-decoration: none;
}

.site-logo:hover {
  color: #948359;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: rgba(232, 232, 232, 0.7);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #948359;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #E8E8E8;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: #E8E8E8;
  color: #000 !important;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
  background: rgba(232, 232, 232, 0.8);
  color: #000 !important;
}

.nav-cta::after {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #E8E8E8;
  margin: 3px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-label {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: rgba(232, 232, 232, 0.5);
  margin-bottom: 32px;
}

.hero-title {
  font-size: 85px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #E8E8E8;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: #948359;
}

.hero-desc {
  font-size: 20px;
  color: rgba(232, 232, 232, 0.6);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: #E8E8E8;
  color: #000 !important;
}

.btn-primary:hover {
  background: rgba(232, 232, 232, 0.8);
  color: #000 !important;
}

.btn-outline {
  background: transparent;
  color: #E8E8E8 !important;
  border: 1px solid rgba(232, 232, 232, 0.3);
}

.btn-outline:hover {
  border-color: #948359;
  color: #948359 !important;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: #0A0A0A;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== FEATURED SECTION ===== */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.featured-card {
  background: #0A0A0A;
  border: 1px solid rgba(232, 232, 232, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.featured-card:hover {
  border-color: rgba(148, 131, 89, 0.3);
}

.featured-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.03);
}

.featured-card-body {
  padding: 32px;
}

.featured-card-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.featured-card-body p {
  font-size: 16px;
  color: rgba(232, 232, 232, 0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: #E8E8E8;
  transition: color 0.3s ease;
}

.card-btn:hover {
  color: #948359;
}

.card-btn .arrow {
  transition: transform 0.3s ease;
}

.card-btn:hover .arrow {
  transform: translateX(4px);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-text p {
  color: rgba(232, 232, 232, 0.6);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 232, 232, 0.08);
  color: rgba(232, 232, 232, 0.6);
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-link:hover {
  background: #948359;
  color: #000;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #0A0A0A;
  border: 1px solid rgba(232, 232, 232, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  border-color: rgba(148, 131, 89, 0.3);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 13px;
  color: rgba(232, 232, 232, 0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.blog-card-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.5);
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(232, 232, 232, 0.06);
  border: 1px solid rgba(232, 232, 232, 0.12);
  border-radius: 3px;
  color: #E8E8E8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(232, 232, 232, 0.3);
}

.newsletter-form input[type="email"]:focus {
  border-color: #948359;
}

.newsletter-form button {
  padding: 14px 28px;
  background: #E8E8E8;
  color: #000;
  border: none;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: rgba(232, 232, 232, 0.8);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(232, 232, 232, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.35);
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.35);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #948359;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 65px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .header-inner {
    height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #0A0A0A;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 40px;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 1px solid rgba(232, 232, 232, 0.06);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 24px;
    padding: 16px 0;
    width: 100%;
    display: block;
  }

  .nav-cta {
    margin-top: 24px;
    text-align: center;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: -0.5px;
  }

  .hero-label {
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 17px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-card-body {
    padding: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== SELECTION ===== */
::selection {
  background: rgba(148, 131, 89, 0.3);
  color: #E8E8E8;
}
