:root {
    --yellow: #f6fd27;
    --black: #231f20;
    --dark: #1a1717;
    --card: #2a2626;
    --white: #ffffff;
    --gray: #999;
    --font-head: 'Mukta Mahee', sans-serif;
    --font-body: 'Inter', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* TYPOGRAPHY */
  .t-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
  }
  .t-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
  }
  .t-body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: #ccc;
    line-height: 1.7;
  }

  .stripe { background: var(--yellow); height: 4px; width: 100%; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(35,31,32,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
  }
  .nav-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--yellow);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--yellow); }
  .nav-cta {
    background: var(--yellow) !important;
    color: var(--black) !important;
    padding: 0.4rem 1.1rem;
    font-weight: 700 !important;
    border-radius: 2px;
  }
  .nav-cta:hover { background: #dde615 !important; }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 55px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
    z-index: 99;
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1.2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.1rem; }
  .mobile-menu a:hover { color: var(--yellow); }

  /* HERO */
  #hero {
    min-height: 75svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 3rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .hero-bg-text {
    position: absolute;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(5rem, 18vw, 14rem);
    color: rgba(246,253,39,0.04);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    top: 50%; transform: translateY(-50%);
  }
  .hero-logo-wrap {
    width: min(540px, 72vw);
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .hero-logo-wrap img { width: 100%; height: auto; }
  .hero-tagline {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: #ccc;
    max-width: 480px;
    margin-bottom: 0.75rem;
    position: relative; z-index: 1;
  }
  .hero-tagline strong { color: var(--yellow); font-weight: 700; }
  .hero-sub {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 2rem;
    position: relative; z-index: 1;
    letter-spacing: 0.03em;
  }
  .hero-sub span { color: var(--yellow); }
  .btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2.2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.04em;
    position: relative; z-index: 1;
    line-height: 1;
  }
  .btn-primary:hover { background: #dde615; transform: translateY(-1px); }

  /* SECTIONS */
  section { padding: 4.5rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-header { margin-bottom: 2.5rem; }
  .section-header .t-label { display: block; margin-bottom: 0.4rem; }

  /* ABOUT */
  #about { background: var(--dark); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .value-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
  }
  .value-item p { font-size: 0.95rem; color: #ccc; }
  .value-item strong { color: var(--white); }
  .about-stat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .stat-box {
    background: var(--card);
    border: 1px solid #333;
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
  .stat-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
  }
  .stat-label { font-size: 0.78rem; color: var(--gray); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }

  /* SERVICES */
  #services { background: var(--black); padding-bottom: 1.5rem; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }
  .service-card {
    background: var(--card);
    border: 1px solid #333;
    padding: 1rem;
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .service-card:hover { border-color: var(--yellow); }
  .service-icon-placeholder {
    width: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px dashed #444;
    padding: 2rem 0;
  }
  .service-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    flex: 1;
  }
  .service-time { font-size: 0.9rem; color: var(--gray); }
  .service-price {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--yellow);
  }
  .service-price span {
    font-size: 1.5rem;
  }



  /* INFO BLOCK */
  #info { background: var(--black); padding-top: 1.5rem; }
  .info-inner {
  }
  .info-inner .t-body {
    font-size: 1.05rem;
    line-height: 1.8;
  }
  /* placeholder for user text */
  .info-placeholder {
    background: var(--card);
    border-left: 3px solid var(--yellow);
    padding: 1.5rem 1.75rem;
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.5rem;
  }

  /* FORM */
  .booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.35rem; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
  }
  .form-field input {
    background: #2a2626;
    border: 1px solid #444;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
    width: 100%;
  }
  .form-field input:focus { border-color: var(--yellow); }
  .form-field input::placeholder { color: #555; }
  .file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1.5px dashed #555;
    padding: 1.75rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
    text-align: center;
  }
  .file-upload-label:hover { border-color: var(--yellow); }
  .file-upload-label span { font-size: 0.78rem; color: var(--gray); }
  .file-upload-label strong { font-size: 0.85rem; color: var(--white); }
  input[type=file] { display: none; }
  .file-preview { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
  .file-preview img { width: 56px; height: 56px; object-fit: cover; border: 1px solid #444; }
  .form-submit-wrap { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
  .form-note { font-size: 0.75rem; color: var(--gray); }
  .form-success {
    display: none;
    padding: 1rem 1.5rem;
    background: rgba(246,253,39,0.08);
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-size: 0.9rem;
    grid-column: 1 / -1;
    margin-top: 0.5rem;
  }
  #form-hero-sec { background: var(--black); }
  #form-bottom-sec { background: var(--dark); }

  /* PORTFOLIO */
  #portfolio { background: var(--dark); }
  .slider-wrap { position: relative; overflow: hidden; touch-action: pan-y; }
  .slider-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
  }
  .slide {
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background: var(--card);
    border: 1px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
  }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .slider-controls { display: flex; gap: 0.75rem; margin-top: 1.25rem; justify-content: flex-end; }
  .slider-btn {
    width: 44px; height: 44px;
    background: none;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .slider-btn:hover { background: var(--yellow); color: var(--black); }

  /* FAQ */
  #faq { background: var(--black); }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item { border-bottom: 1px solid #2e2e2e; }
  .faq-item:first-child { border-top: 1px solid #2e2e2e; }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    gap: 1rem;
    user-select: none;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--yellow); }
  .faq-q.active { color: var(--yellow); }
  .faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s;
    color: var(--yellow);
  }
  .faq-q.active .faq-icon { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .faq-a.open { max-height: 400px; padding-bottom: 1.25rem; }

  /* LINKS */
  #links { background: var(--dark); }
  .links-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
  .link-card {
    display: flex; align-items: center; gap: 0.75rem;
    background: var(--card); border: 1px solid #333;
    padding: 1rem 1.5rem; text-decoration: none; color: var(--white);
    transition: border-color 0.2s, background 0.2s;
    flex: 0 1 auto;
    min-width: 240px;
    justify-content: flex-start;
  }
  .link-card:hover { border-color: var(--yellow); background: #2e2a2a; }
  .link-icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
  .link-icon svg { width: 100%; height: 100%; }
  .link-icon img { width: 100%; height: 100%; object-fit: contain; }
  .link-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
  .link-sub { font-size: 0.75rem; color: var(--gray); }

  /* CONTACT */
  #contact { background: var(--black); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
  .contact-info p { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.35rem; font-size: 0.95rem; color: #ccc; }
  .contact-info p svg { flex-shrink: 0; margin-top: 2px; }
  .contact-value { color: var(--white); font-weight: 400; }
  .contact-label-small { font-size: 0.72rem; color: var(--gray); display: block; }
  .contact-link {
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-link:hover { color: var(--yellow); }

  /* FOOTER */
  footer {
    background: #111;
    border-top: 2px solid var(--yellow);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
  }
  footer strong { color: var(--yellow); }
  footer a { color: var(--yellow); text-decoration: none; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 0.75rem 1.25rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 3rem 1.25rem; }
    #hero { padding: 5.5rem 1.25rem 2.5rem; min-height: 65svh; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-stat-block { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .booking-form { grid-template-columns: 1fr; }
    .form-field.full { grid-column: 1; }
    .form-submit-wrap { grid-column: 1; }
    .form-success { grid-column: 1; }
    .pricing-table th, .pricing-table td { padding: 0.65rem 0.5rem; font-size: 0.82rem; }
    .links-grid { flex-direction: column; }
    .link-card { width: 100%; }
    .slide { flex: 0 0 100% !important; }
  }
  @media (max-width: 420px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-stat-block { grid-template-columns: 1fr 1fr; }
  }
/* ── REVIEWS ── */
#reviews { background: var(--black); }
.reviews-wrap { overflow-x: hidden; overflow-y: visible; touch-action: pan-y; }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
  align-items: stretch;
  padding-bottom: 2px;
}
.review-card {
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid #333;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--yellow); }
.review-stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.review-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
}
.review-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.55;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .review-card { padding: 1.25rem 1.1rem; }
  .review-text { font-size: 0.82rem; line-height: 1.5; }
}
