:root {
  --bg: #0e0f11;
  --bg-alt: #16181b;
  --card: #1c1f23;
  --border: #2a2e33;
  --text: #f2f2f0;
  --text-muted: #a8adb3;
  --accent: #e8352e;
  --accent-dark: #c22823;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { margin: 0; font-weight: 700; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 15, 17, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--accent);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

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

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  padding: 10px 18px;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */

.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 53, 46, 0.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(232, 53, 46, 0.08), transparent 50%);
  text-align: center;
}

.hero-mark {
  width: 190px;
  color: var(--accent);
  margin-bottom: 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

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

/* Section titles */

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 10px 0 48px;
}

/* Services */

.services { padding: 90px 0; }

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

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232, 53, 46, 0.3);
}

.ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-head {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.card-head h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.feature-list {
  flex: 1;
  margin-bottom: 24px;
}

.feature-list li {
  padding: 7px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  position: relative;
  padding-left: 22px;
}

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

.card-cta { width: 100%; }

/* Packages */

.packages {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.package-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.package-card h3 {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}

.package-price span {
  font-size: 1.2rem;
  margin-left: 2px;
}

.package-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 6px 0 0;
}

.package-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 36px;
}

/* Gallery */

.gallery { padding: 90px 0; }

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

.ba-item {
  margin: 0;
}

.ba-item figcaption {
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  user-select: none;
}

.ba-slider img {
  display: block;
  width: 100%;
  pointer-events: none;
}

.ba-overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

.ba-overlay-wrap img {
  max-width: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  touch-action: pan-y;
}

.ba-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(14, 15, 17, 0.75);
  pointer-events: none;
}

.ba-label-left { left: 12px; color: #d0d4d9; }
.ba-label-right { right: 12px; color: var(--accent); }

/* Reviews */

.reviews {
  padding: 90px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-card {
  flex: 0 0 100%;
  text-align: center;
  padding: 24px 72px 8px;
  box-sizing: border-box;
}

.review-stars {
  color: #f0b429;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
}

.review-text {
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 0 0 18px;
}

.review-name {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.review-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.review-prev { left: 4px; }
.review-next { right: 4px; }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.review-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.review-dots button.active { background: var(--accent); }

@media (max-width: 560px) {
  .review-card { padding: 16px 48px 4px; }
  .review-text { font-size: 1rem; }
}

/* Contact */

.contact { padding: 90px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info .section-title,
.contact-info .section-sub {
  text-align: left;
}

.contact-info .section-sub { margin-bottom: 32px; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-list a {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-list a:hover { color: var(--accent); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 14px 0 6px;
}

.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button { margin-top: 22px; }

.form-note {
  font-size: 0.85rem;
  color: var(--accent);
  text-align: center;
  margin: 14px 0 0;
  min-height: 1.2em;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

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

/* Responsive */

@media (max-width: 860px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }

  .main-nav.open { display: flex; }

  .nav-toggle { display: flex; }

  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 70px 0 56px; }
  .services, .packages, .contact { padding: 60px 0; }
}
