:root {
  --maroon: #7a1f2b;
  --maroon-dark: #5c1620;
  --saffron: #e08e2b;
  --green: #1b5e3a;
  --ink: #232427;
  --muted: #6b6f76;
  --bg: #ffffff;
  --bg-soft: #f7f5f2;
  --border: #e7e3dd;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans Devanagari', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

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

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

/* Topbar */
.topbar {
  background: var(--maroon-dark);
  color: #f3e6d8;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  gap: 24px;
  padding: 8px 20px;
}
.topbar-item { color: #f3e6d8; text-decoration: none; }
.topbar-item:hover { color: #fff; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--maroon);
}
.brand-tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--saffron);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: var(--maroon); }
.nav-cta {
  background: var(--maroon);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--maroon-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero / Slideshow */
.hero { position: relative; }
.slideshow {
  position: relative;
  height: 88vh;
  min-height: 480px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide.slide-photo { background-position: center 12%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,10,0.35) 0%, rgba(20,10,10,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron);
  font-weight: 700;
  margin: 0 0 12px;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin: 0;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(18px, 2.4vw, 26px);
  margin: 10px 0 30px;
  font-weight: 600;
  color: #f3e6d8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--maroon);
  color: #fff;
}
.btn-primary:hover { background: var(--maroon-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--maroon); }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.slide-arrow:hover { background: rgba(255,255,255,0.35); }
.slide-arrow.prev { left: 20px; }
.slide-arrow.next { right: 20px; }

.slide-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.slide-dots button.active { background: #fff; }

/* Sections */
.section { padding: 72px 0; }
.section-eyebrow {
  color: var(--saffron);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin: 0 0 8px;
}
.center { text-align: center; }
h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 20px; color: var(--maroon); }
.note { color: var(--muted); font-size: 13px; }

/* About */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.about-text p { color: var(--ink); }

/* Vision / Mission */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.vm-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.vm-icon { font-size: 40px; margin-bottom: 14px; }
.vm-card h3 { color: var(--maroon); margin: 0 0 10px; }
.vm-card p { color: var(--muted); margin: 0; }

/* Work */
.work-section { background: var(--bg); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.work-card {
  position: relative;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  border-top: 4px solid var(--maroon);
}
.work-card.placeholder { opacity: 0.7; }
.work-year {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--maroon);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.work-card.outline {
  border-top-color: var(--green);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
}
.work-icon { font-size: 32px; margin-bottom: 10px; }
.work-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--ink); }
.work-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Gallery */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.gallery-item {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,10,10,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-image {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Contact */
.contact-section { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.contact-card h3 { color: var(--maroon); margin-top: 0; }
.contact-line { margin: 6px 0; }
.phone-link { color: var(--maroon); font-weight: 700; text-decoration: none; font-size: 18px; }
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 16px;
}

/* Footer */
.footer {
  background: var(--maroon-dark);
  color: #f3e6d8;
  padding: 22px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.footer-inner a { color: #f3e6d8; text-decoration: none; font-weight: 600; }
.footer-inner a:hover { color: #fff; }

/* Floating call button */
.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(122,31,43,0.4);
  z-index: 200;
}
.floating-call:hover { background: var(--maroon-dark); }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .vm-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .work-grid { grid-template-columns: 1fr; }
  .topbar-inner { font-size: 12px; gap: 14px; }
}
