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

:root {
  --bg-dark: #080808;
  --bg-surface: #111111;
  --bg-card: #0e0e0e;
  --accent: #ffffff;
  --accent-muted: #888888;
  --accent-warm: #c8a96e;
  --text-main: #efefef;
  --text-dim: #888888;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --section-padding: 120px 6%;
  --radius: 2px;
}

* {
  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);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

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

h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #555555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

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

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.25s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

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

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.7) 100%
  );
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 9vw, 7rem);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.hero-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto 48px;
  color: rgba(240,240,240,0.65);
  font-weight: 300;
  line-height: 1.75;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: background 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              color 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.2s ease,
              box-shadow 0.35s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 24px rgba(255,255,255,0.08);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 0 24px rgba(255,255,255,0.08);
}

/* ── Sections ── */
section {
  padding: var(--section-padding);
}

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

.section-header {
  margin-bottom: 64px;
  max-width: 760px;
}

.section-header h2 {
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-warm);
  margin-top: 16px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
}

/* ── About ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.75;
}

.about-image {
  position: relative;
}

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

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

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

/* ── Features ── */
#why-us {
  background: var(--bg-dark);
}

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent-warm);
  transition: height 0.4s ease;
}

.feature-card:hover {
  background: #141414;
  transform: none;
}

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

.feature-card h4 {
  font-size: 0.72rem;
  margin-bottom: 16px;
  color: var(--accent);
  letter-spacing: 0.18em;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Pricing ── */
#packages {
  background: var(--bg-surface);
}

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

.price-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--border-strong);
}

.price-card.featured {
  border: 1px solid rgba(200, 169, 110, 0.5);
  background: linear-gradient(160deg, #111111 0%, #0e0e0e 100%);
  position: relative;
}

.price-card.featured:hover {
  border-color: var(--accent-warm);
}

.price-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  background: var(--accent-warm);
  color: var(--bg-dark);
  padding: 5px 12px;
  border-radius: var(--radius);
}

.price-header {
  margin-bottom: 8px;
}

.price-header h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.price-value {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  margin: 20px 0 8px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--accent);
}

.price-card.featured .price-value {
  color: var(--accent-warm);
}

.price-list {
  list-style: none;
  margin: 28px 0 36px;
  flex-grow: 1;
}

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

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

/* ── Gallery ── */
#gallery {
  background: var(--bg-dark);
}

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

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

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

.gallery-item:hover::after {
  background: rgba(8,8,8,0);
}

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

.gallery-item:hover img {
  transform: scale(1.07);
}

/* ── Contact ── */
#contact {
  background: var(--bg-surface);
}

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

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

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

.form-group label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  color: var(--text-dim);
}

input,
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(136,136,136,0.45);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-warm);
}

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

input[type="date"] {
  color-scheme: dark;
}

/* ── Footer ── */
footer {
  padding: 80px 6% 36px;
  background: #050505;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand p {
  max-width: 280px;
  color: var(--text-dim);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-info h4 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
  color: var(--accent-warm);
}

.footer-info p {
  color: var(--text-dim);
  margin-bottom: 10px;
  font-size: 0.875rem;
  font-weight: 300;
}

.footer-info a {
  color: var(--text-dim) !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-info a:hover {
  color: var(--accent) !important;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.25s ease;
  letter-spacing: 0.04em;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  font-size: 0.62rem;
  color: rgba(136,136,136,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-display);
}

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

  .grid-2,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .footer-top {
    flex-wrap: wrap;
    gap: 48px;
  }
}

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

  nav {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .price-card {
    padding: 36px 28px;
  }

  .btn {
    padding: 15px 28px;
    font-size: 0.6rem;
  }
}