:root {
  --primary: #ffffff;
  --accent: #d4af37;
  --accent-dark: #b38f2d;
  --accent-light: #e8cc6a;
  --bg-dark: #080808;
  --bg-medium: #111111;
  --bg-light: #1e1e1e;
  --bg-card: #161616;
  --text-main: #e8e8e8;
  --text-muted: #888888;
  --text-subtle: #555555;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(212, 175, 55, 0.4);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h3 {
  letter-spacing: 0.04em;
}

h4 {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ─── HEADER & NAV ─────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.4s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo-container img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.logo-container:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

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

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

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

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--primary);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 0;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn span,
.btn {
  position: relative;
  z-index: 1;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  color: var(--bg-dark);
  border-color: var(--accent);
}

/* ─── 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.15) 40%,
    rgba(8,8,8,0.65) 100%
  );
  z-index: 0;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.9);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  max-width: 860px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 7.5vw, 5.5rem);
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease forwards;
}

.hero-content p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 2.5rem;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* ─── SECTIONS ─────────────────────────────────────────────── */
section {
  padding: 9rem 0;
}

.section-alt {
  background-color: var(--bg-medium);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent), transparent);
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.section-title p {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.section-title .divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-dark), var(--accent-light));
  margin: 0 auto;
  margin-top: 0.5rem;
}

/* ─── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-accent);
  transform: translate(16px, 16px);
  z-index: 0;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  box-shadow: 24px 24px 0px var(--accent-dark);
  filter: brightness(0.95) saturate(1.05);
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-style: italic;
}

.about-text p {
  color: var(--text-muted);
}

.about-text p + p {
  margin-top: 1rem;
}

/* ─── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2.75rem 2rem;
  border-radius: 2px;
  transition: var(--transition);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
  transition: height 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-gold);
}

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

.feature-card h4 {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ─── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  transition: var(--transition);
  border-radius: 2px;
}

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

.price-card.featured {
  background: var(--bg-light);
  border: 1px solid var(--accent);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.15), 0 20px 60px rgba(0,0,0,0.4);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.3rem 1.2rem;
}

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

.price-header h3 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
  line-height: 1;
}

.price-list {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.price-list li {
  margin-bottom: 0.9rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ─── GALLERY ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

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

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 3rem;
}

.info-item {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item label {
  display: block;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

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

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group.full {
  grid-column: span 2;
}

input,
textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 0.95rem 1.1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-subtle);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.04);
}

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

/* ─── FOOTER ───────────────────────────────────────────────── */
footer {
  padding: 4.5rem 0 3.5rem;
  background: #040404;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.footer-logo img {
  height: 42px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.social-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.copyright {
  font-size: 0.72rem;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
}

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 520px;
  }

  .nav-links {
    display: none;
  }

  .pricing-grid {
    gap: 2rem;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

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

  .gallery-item:first-child {
    grid-row: span 1;
  }

  section {
    padding: 6rem 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.5rem;
  }

  .contact-form form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

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

  .gallery-item {
    height: 260px;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  section {
    padding: 5rem 0;
  }

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

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .section-title {
    margin-bottom: 3rem;
  }

  .price-amount {
    font-size: 2.75rem;
  }
}