@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --bg-dark: #080808;
  --bg-surface: #111111;
  --bg-card: #161616;
  --accent: #ffffff;
  --accent-gold: #c9a84c;
  --accent-muted: #888888;
  --text-main: #d8d8d8;
  --text-dim: #666666;
  --border-subtle: rgba(255,255,255,0.07);
  --border-mid: rgba(255,255,255,0.14);
  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --section-padding: 120px 6%;
  --radius-sm: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  letter-spacing: 5px;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 3px;
}

h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
}

p {
  font-size: 0.975rem;
  color: var(--text-main);
  line-height: 1.8;
}

/* ─── HEADER ─────────────────────────────────────────── */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

nav a:hover::after {
  width: 100%;
}

/* ─── HERO ───────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.1) 40%, rgba(8,8,8,0.3) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 5%;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 7.5vw, 5.5rem);
  letter-spacing: 8px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  line-height: 1.0;
}

.hero p {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.4vw, 0.8rem);
  letter-spacing: 4px;
  margin-bottom: 3rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  animation: heroFadeUp 1.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1.2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── BUTTONS ────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

/* ─── SECTIONS ───────────────────────────────────────── */

section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--bg-dark);
}

.section-surface {
  background-color: var(--bg-surface);
}

.section-header {
  margin-bottom: 0;
}

/* ─── ABOUT ──────────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 300;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  pointer-events: none;
  z-index: 0;
  transition: border-color 0.4s;
}

.about-image:hover::before {
  border-color: var(--accent-gold);
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  filter: grayscale(80%) contrast(1.05);
  transition: filter 0.6s ease;
  position: relative;
  z-index: 1;
}

.about-image img:hover {
  filter: grayscale(0%) contrast(1.0);
}

/* ─── FEATURES ───────────────────────────────────────── */

.section-header h2 {
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 5rem;
  border: 1px solid var(--border-subtle);
}

.feature-card {
  padding: 44px 36px;
  border: none;
  background: var(--bg-dark);
  transition: background 0.3s;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  background: var(--bg-card);
  transform: none;
}

.feature-card:hover::before {
  width: 100%;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--accent-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── PRICING ────────────────────────────────────────── */

#packages h2 {
  letter-spacing: 5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border-top: 3px solid var(--border-mid);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: border-top-color 0.3s, transform 0.3s;
  border-radius: var(--radius-sm);
}

.price-card:hover {
  border-top-color: var(--accent-gold);
  transform: translateY(-4px);
}

.price-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.price-header h3 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--accent-muted);
  margin-bottom: 1.25rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-header p {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.price-card ul {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.price-card li {
  padding: 11px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--accent-muted);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li::before {
  content: '—';
  color: var(--accent-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.price-card .btn {
  text-align: center;
  width: 100%;
}

/* ─── GALLERY ────────────────────────────────────────── */

#gallery h2 {
  letter-spacing: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.25);
  transition: opacity 0.4s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: grayscale(30%);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ─── CONTACT ────────────────────────────────────────── */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 90px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.25rem;
}

.contact-info > p {
  font-weight: 300;
  color: var(--accent-muted);
  font-size: 0.95rem;
}

.contact-info div {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info div:first-of-type {
  border-top: 1px solid var(--border-subtle);
}

.contact-info h4 {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-form {
  padding-top: 4px;
}

.form-group {
  margin-bottom: 28px;
}

input,
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-mid);
  padding: 14px 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 0.5px;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
  font-size: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--accent-gold);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: 12px;
}

/* ─── FOOTER ─────────────────────────────────────────── */

footer {
  padding: 40px 6%;
  background: #000;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-info p {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.social-links a {
  color: var(--accent-muted);
  text-decoration: none;
  font-size: 0.62rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.social-links a:hover {
  color: var(--accent-gold);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1024px) {
  :root {
    --section-padding: 90px 5%;
  }

  .about-grid {
    gap: 50px;
  }

  .contact-container {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image::before {
    display: none;
  }

  nav {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

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

@media (max-width: 600px) {
  :root {
    --section-padding: 70px 5%;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

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

  .price-card {
    padding: 36px 28px;
  }
}