:root {
  --bg-night: #030303;
  --bg-steel: #111111;
  --accent-gold: #f2b134;
  --accent-teal: #6f6f6f;
  --text-main: #f3f3f3;
  --text-soft: #b4b4b4;
  --glass-light: rgba(255, 255, 255, 0.16);
  --glass-dark: rgba(8, 8, 8, 0.84);
  --glass-border: rgba(255, 255, 255, 0.22);
  --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 86px;
  font-family: "Manrope", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.09), transparent 34%),
    radial-gradient(circle at 82% 9%, rgba(242, 177, 52, 0.18), transparent 34%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(145deg, var(--bg-night), var(--bg-steel));
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-mark {
  font-family: "Sora", sans-serif;
}

a {
  color: #f0cb7c;
}

a:hover {
  color: #f5dc9f;
}

.page-shell {
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 92% 14%, rgba(255, 255, 255, 0.06), transparent 20%);
  z-index: -1;
}

.glass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--glass-light), rgba(255, 255, 255, 0.04) 26%, var(--glass-dark));
  border: 1px solid var(--glass-border);
  border-radius: 1.1rem;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: var(--shadow-soft);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 38%);
}

.glass-nav {
  background: rgba(8, 8, 8, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.brand-mark {
  color: #fff;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  font-weight: 600;
}

.navbar .nav-link {
  color: var(--text-soft);
  font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: white;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.3rem 0.9rem !important;
}

.hero-section {
  min-height: calc(100vh - 90px);
  position: relative;
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.15);
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-card {
  max-width: 680px;
  padding: 2rem;
}

.hero-card h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.caps {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #c9c9c9;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-head {
  position: relative;
  margin-bottom: 1.2rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(8, 8, 8, 0.64));
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.section-head::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 40%);
}

.section-head > * {
  position: relative;
  z-index: 1;
}

.section-head h1,
.section-head h2 {
  margin-bottom: 0;
}

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

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

.card-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.9rem 0.9rem 0 0;
}

.service-card,
.blog-card,
.gallery-card {
  overflow: hidden;
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover,
.blog-card:hover,
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.service-card .card-body,
.blog-card .card-body,
.gallery-card .card-body {
  padding: 1rem;
}

.gallery-card .card-media {
  height: clamp(280px, 32vw, 420px);
  object-fit: contain;
  background: linear-gradient(150deg, rgba(8, 8, 8, 0.92), rgba(32, 32, 32, 0.66));
  padding: 0.1rem;
}

.gallery-card .card-body {
  display: flex;
  flex-direction: column;
}

.gallery-card .card-body .btn {
  align-self: flex-start;
}

.price-tag {
  color: var(--accent-gold);
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #d9971f, var(--accent-gold));
  border-color: transparent;
  color: #17202a;
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #efb343, #f4c45f);
  color: #131b22;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.62);
}

.btn-outline-light:hover {
  color: #0d0d0d;
  background: #efefef;
}

.testimonial-slider {
  position: relative;
  min-height: 180px;
}

.testimonial-slide {
  padding: 1.2rem;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 480ms ease;
}

.stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.site-footer {
  margin: 2rem 1rem 1rem;
}

.cta-strip {
  text-align: center;
  padding: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: min(420px, calc(100vw - 2rem));
  padding: 1rem;
  z-index: 1200;
}

.insta-grid {
  display: grid;
  gap: 0.8rem;
}

.social-links-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.social-brand-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.social-brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.46);
  color: #fff;
}

.social-brand-card strong {
  display: block;
  font-size: 0.98rem;
}

.social-brand-card small {
  display: block;
  color: var(--text-soft);
}

.social-icon-badge,
.social-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.social-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.social-icon-inline {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.social-icon-badge svg,
.social-icon-inline svg {
  width: 64%;
  height: 64%;
  fill: #fff;
}

.social-icon-fb {
  background: linear-gradient(140deg, #1877f2, #0b4bb4);
}

.social-icon-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 40%, #d6249f 62%, #285aeb 100%);
}

.social-embed-frame {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.8rem;
  overflow: hidden;
}

.faq-item {
  margin-bottom: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-top: 0.5rem;
  color: var(--text-soft);
}

.form-control,
.form-select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text-main);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(12, 12, 12, 0.68));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.form-control::placeholder,
textarea::placeholder {
  color: rgba(235, 235, 235, 0.72);
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  color: var(--text-main);
  border-color: rgba(242, 177, 52, 0.72);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(12, 12, 12, 0.74));
  box-shadow: 0 0 0 0.16rem rgba(242, 177, 52, 0.18);
}

.article-content p {
  color: var(--text-soft);
  line-height: 1.75;
}

.gallery-modal .modal-content {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(7, 7, 7, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.gallery-modal-media-wrap {
  min-height: 62vh;
  height: min(78vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  background: rgba(6, 6, 6, 0.88);
}

.gallery-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(1.8);
}

.alert {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(12, 12, 12, 0.7));
  color: var(--text-main);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.pagination .page-link {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text-main);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(10, 10, 10, 0.6));
}

.pagination .page-item.active .page-link {
  border-color: rgba(242, 177, 52, 0.74);
  background: linear-gradient(145deg, rgba(242, 177, 52, 0.54), rgba(157, 95, 12, 0.84));
  color: #0f0f0f;
}

.gallery-modal-media {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.8rem;
}

video.gallery-modal-media {
  width: 100%;
  height: 100%;
  background: #000;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 74px;
  }

  .hero-card {
    padding: 1.4rem;
  }

  .card-media {
    height: 180px;
  }

  .gallery-card .card-media {
    height: clamp(240px, 64vw, 340px);
  }
}
