:root {
  --maroon: #bf3f3d;
  --purple: #d98970;
  --saffron: #c85445;
  --gold: #b93d3a;
  --orange: #315b35;
  --cream: #fffaf2;
  --ink: #233225;
  --text: #233225;
  --muted: #6e5f53;
  --card: rgba(255, 250, 242, 0.82);
  --card-border: rgba(191, 63, 61, 0.14);
  --glow: 0 0 0 1px rgba(191, 63, 61, 0.12), 0 20px 40px rgba(78, 37, 31, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(191, 63, 61, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(49, 91, 53, 0.11), transparent 30%),
    radial-gradient(circle at 30% 85%, rgba(217, 137, 112, 0.18), transparent 35%),
    linear-gradient(135deg, #fffaf3, #fff5ec 38%, #f7f1e7 72%, #fffaf4);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-family: "Cinzel", serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

p {
  margin: 0 0 1rem;
}

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

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

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
}

.center {
  text-align: center;
}

.glass {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 239, 0.55));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--glow);
  backdrop-filter: blur(10px);
}

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(rgba(191, 63, 61, 0.35) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(94, 56, 44, 0.12);
  transition: background-color var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(94, 56, 44, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  text-align: left;
  flex: 0 0 auto;
}

.brand-text strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.08;
  color: var(--maroon);
}

.brand-text small {
  display: block;
  color: var(--orange);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 1.2rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.12) saturate(1.08) brightness(1.01);
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--maroon);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.2rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
}

.hero {
  padding-top: 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-subtext {
  color: var(--muted);
  max-width: 62ch;
}

.gujarati-line {
  color: var(--maroon);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
  box-shadow: 0 10px 25px rgba(191, 63, 61, 0.2), 0 0 24px rgba(191, 63, 61, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 32px rgba(191, 63, 61, 0.26), 0 0 28px rgba(191, 63, 61, 0.22);
}

.btn-outline {
  border-color: rgba(191, 63, 61, 0.24);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(191, 63, 61, 0.08);
}

.trust-points {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-points article {
  padding: 0.95rem;
  border: 1px solid rgba(191, 63, 61, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
}

.trust-points h3 {
  margin-bottom: 0.2rem;
  color: var(--maroon);
}

.trust-points p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(191, 63, 61, 0.14);
  overflow: hidden;
  box-shadow: var(--glow);
  background: rgba(255, 255, 255, 0.78);
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card {
  position: static;
  padding: 1.3rem 1.2rem 1.35rem;
  background: rgba(255, 250, 243, 0.96);
  border-top: 1px solid rgba(191, 63, 61, 0.12);
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  gap: 1.6rem;
}

.about-highlight {
  padding: 1.4rem;
}

.about-highlight li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(191, 63, 61, 0.18);
  color: var(--muted);
}

.about-highlight li:last-child {
  border-bottom: 0;
}

.cards-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.info-card {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 247, 239, 0.58));
  border: 1px solid rgba(191, 63, 61, 0.12);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 63, 61, 0.28);
  box-shadow: 0 18px 34px rgba(95, 57, 44, 0.12);
}

.icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(191, 63, 61, 0.1);
  color: var(--maroon);
  margin-bottom: 0.7rem;
}

.experience-panel {
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(251, 241, 233, 0.9)),
    radial-gradient(circle at 15% 15%, rgba(191, 63, 61, 0.12), transparent 32%);
  border: 1px solid rgba(191, 63, 61, 0.14);
}

.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 63, 61, 0.12);
}

.stat-card h3 {
  font-size: clamp(2rem, 6vw, 2.9rem);
  color: var(--maroon);
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.gallery-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}

.gallery-item {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 63, 61, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 239, 0.58));
  margin: 0;
}

.gallery-item::after {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: rgba(246, 238, 228, 0.92);
  transition: transform 400ms ease;
}

.gallery-item figcaption {
  position: static;
  padding: 1rem 1rem 1.1rem;
  background: rgba(35, 50, 37, 0.96);
}

.gallery-item strong,
.gallery-item span {
  display: block;
}

.gallery-item strong {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: var(--cream);
}

.gallery-item span {
  font-size: 0.88rem;
  color: #f0ddc3;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item.image-missing {
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(76, 16, 47, 0.9), rgba(63, 31, 99, 0.82));
}

.gallery-item.image-missing img {
  display: none;
}

.gallery-item.image-missing figcaption {
  background: transparent;
  padding-top: 1.4rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.testimonials-track {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 63, 61, 0.12);
  opacity: 0.55;
  transform: scale(0.985);
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(191, 63, 61, 0.28);
}

.testimonial-card p {
  color: var(--text);
}

.testimonial-card small {
  color: var(--muted);
}

.slider-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(191, 63, 61, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: rgba(191, 63, 61, 0.1);
}

.cta-panel {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(191, 63, 61, 0.1), rgba(217, 137, 112, 0.12), rgba(49, 91, 53, 0.12));
  border: 1px solid rgba(191, 63, 61, 0.14);
}

.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.contact-copy li {
  margin: 0.55rem 0;
  color: var(--muted);
}

.contact-form {
  padding: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 63, 61, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font: inherit;
  padding: 0.78rem 0.84rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 0.3rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(191, 63, 61, 0.32);
  border-color: transparent;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  border-top: 1px solid rgba(191, 63, 61, 0.14);
  background: rgba(255, 249, 241, 0.92);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.site-footer h4 {
  margin-bottom: 0.6rem;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--maroon);
}

.footer-contact {
  text-align: center;
  margin: 1.4rem 0 0;
  color: var(--muted);
}

.footer-contact a {
  color: inherit;
}

.copyright {
  text-align: center;
  margin: 1.6rem 0 0;
  color: #d5bea2;
  font-size: 0.9rem;
}

.thank-you-panel {
  width: min(720px, 100%);
  margin: 4rem auto;
  padding: 2.5rem 1.4rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .navbar {
    min-height: 78px;
  }

  .brand {
    max-width: calc(100% - 120px);
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .brand-text small {
    font-size: 0.5rem;
  }

  .header-logo {
    width: 62px;
    height: 62px;
    margin-left: auto;
    margin-right: 0.25rem;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 4%;
    width: min(280px, 92vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 250, 243, 0.98);
    border: 1px solid rgba(191, 63, 61, 0.16);
    display: none;
  }

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

  .menu-toggle {
    display: inline-block;
    cursor: pointer;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 720px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-row-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 320px;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .two-col {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .gallery-row-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item img {
    height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
