:root {
  --black: #0A0A0A;
  --black-2: #121316;
  --panel: #16181c;
  --steel: #8A8D91;
  --steel-dim: #5a5f66;
  --white: #FFFFFF;
  --ink: #e9eaec;
  --yellow: #F5AF05;
  --yellow-soft: rgba(245, 175, 5, .14);
  --line: rgba(255, 255, 255, .1);
  --radius: 14px;
  --maxw: 1200px;
  --header-h: 64px;
  --font: "Helvetica Neue", Arial, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--yellow);
  color: #1a1300;
}

.btn--primary:hover {
  background: #ffc02a;
  transform: scale(1.02);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.05rem;
  width: 100%;
}

/* ====================== HEADER ====================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
  transition: all 0.25s ease;
}

.site-header.is-stuck {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand__logo {
  height: 34px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--steel);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link--active {
  color: var(--white);
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.2s ease;
}

.header-call:hover {
  color: var(--yellow);
}

@media (max-width: 768px) {
  .header-nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .header-call__num {
    display: none;
  }
}

/* ====================== GENERAL SECTIONS ====================== */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--steel);
  font-size: 1.05rem;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  margin-top: var(--header-h);
  padding: clamp(60px, 15vh, 120px) 20px;
  background: linear-gradient(135deg, #0a0a0a, #16181c);
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 175, 5, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 175, 5, 0.06), transparent);
  border-radius: 50%;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.1;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__cta .btn {
  min-width: 160px;
}

/* ====================== TRUST BAR ====================== */
.trustbar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 20px;
  background: linear-gradient(90deg, var(--black-2), var(--black), var(--black-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}

.trustbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 175, 5, 0.08), transparent);
  pointer-events: none;
}

.trust-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.trust-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}

.trust-stars {
  font-size: 1.3rem;
  color: var(--yellow);
  display: block;
  letter-spacing: 2px;
}

.trust-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1.5px solid var(--yellow);
  border-radius: 6px;
  font-weight: 800;
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  margin-top: 8px;
  display: block;
}

@media (max-width: 768px) {
  .trustbar {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px 20px;
  }

  .trust-num {
    font-size: 1.4rem;
  }

  .trust-stars {
    font-size: 1rem;
  }
}

/* ====================== SERVICES ====================== */
.services {
  position: relative;
  padding: clamp(60px, 12vw, 100px) 20px;
  background: var(--black);
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 175, 5, 0.07), transparent);
  border-radius: 50%;
  z-index: 0;
}

.services__grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--steel);
  margin: 0 0 16px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  color: var(--ink);
  font-size: 0.95rem;
  padding-left: 16px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: bold;
}

/* ====================== WORK / CAROUSEL ====================== */
.work {
  padding: clamp(60px, 12vw, 100px) 20px;
  background: var(--black-2);
}

.carousel-container {
  max-width: var(--maxw);
  margin: 40px auto 0;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel__slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border: 1px solid var(--yellow);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__btn:hover {
  background: rgba(245, 175, 5, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel__btn--prev {
  left: 16px;
}

.carousel__btn--next {
  right: 16px;
}

.carousel__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel__dot--active {
  background: var(--yellow);
  width: 24px;
  border-radius: 4px;
}

.carousel__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ====================== WHY CHOOSE US ====================== */
.why {
  position: relative;
  padding: clamp(60px, 12vw, 100px) 20px;
  background: var(--black);
  overflow: hidden;
}

.why::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 175, 5, 0.06), transparent);
  border-radius: 50%;
  z-index: 0;
}

.why__grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.why__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.why__card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.why__card p {
  color: var(--steel);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ====================== CONTACT ====================== */
.contact {
  position: relative;
  padding: clamp(60px, 12vw, 100px) 20px;
  background: var(--black-2);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 175, 5, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

/* CTA BUTTONS (Side by Side) */
.contact__buttons {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-button-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.contact-button-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-button-card .btn {
  width: 100%;
}

/* INQUIRY FORM */
.contact__form-section {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 32px auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.contact__form-section h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.urable-embed {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.urable-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--steel);
  margin-top: 12px;
}

/* CONTACT INFO */
.contact__info {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 32px auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.contact__info h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  font-weight: 700;
}

.contact-list a {
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.contact-list span {
  color: var(--ink);
  line-height: 1.5;
}

/* MAP */
.contact__map {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 32px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 360px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(0.3) invert(0.9) hue-rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .contact__buttons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__form-section {
    padding: 20px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact__map {
    height: 300px;
  }
}

/* ====================== FOOTER ====================== */
.site-footer {
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer__brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 8px;
}

.footer__info {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 4px 0;
}

.footer__info a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__info a:hover {
  color: var(--yellow);
}

.footer__credit {
  color: var(--steel-dim);
  font-size: 0.8rem;
  margin: 12px 0 0;
}

/* ====================== STICKY MOBILE CTA ====================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.sticky-cta.is-visible {
  display: flex;
}

.sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--white);
}

.sticky-cta__btn--call {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-cta__btn--call:active {
  transform: scale(0.98);
}

.sticky-cta__btn--book {
  background: var(--yellow);
  color: #1a1300;
  font-weight: 800;
}

.sticky-cta__btn--book:active {
  transform: scale(0.98);
}

@media (min-width: 1024px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

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

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

@media (max-width: 640px) {
  .header-nav {
    gap: 16px;
    font-size: 0.85rem;
  }

  .carousel {
    aspect-ratio: 1 / 1;
  }

  .reels-container {
    gap: 12px;
  }

  .contact__form-section {
    padding: 20px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact__ctas {
    gap: 16px;
  }
}
