:root {
  --navy: #15344a;
  --navy-deep: #0c2231;
  --gold: #c9a24d;
  --gold-soft: #e2c47a;
  --cream: #fffdfa;
  --ink: #17212b;
  --muted: #53616f;
  --line: rgba(21, 52, 74, 0.12);
  --card-shadow: 0 24px 70px rgba(12, 34, 49, 0.14);
  --font-sans: "Manrope", sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-devanagari-sans: "Noto Sans Devanagari", sans-serif;
  --font-devanagari-serif: "Noto Serif Devanagari", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 77, 0.18), transparent 26%),
    linear-gradient(180deg, #f6f1e8 0%, #f9f6f1 44%, #f2ebe0 100%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

main {
  padding-bottom: 40px;
}

.site-header,
.hero,
.section,
.stats-strip,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #21506e);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.96rem;
  font-weight: 700;
}

.top-nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--muted);
  transition: color 180ms ease;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 32px;
  align-items: center;
  padding: 34px 0 32px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  line-height: 1.08;
  color: var(--navy-deep);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lead,
.hero-alt,
.section-heading p,
.service-card p,
.about-copy p,
.address-panel p,
.contact-card p,
.stat span {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hindi-text {
  font-family: var(--font-devanagari-sans);
  letter-spacing: 0;
}

.hero h1.hindi-text,
.feature-card h2.hindi-text {
  font-family: var(--font-devanagari-serif);
  font-weight: 700;
}

.hero-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  justify-items: start;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 6px 0 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--navy), #1f4e6d);
  color: #fff;
  box-shadow: var(--card-shadow);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  width: min(100%, 540px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-items: start;
}

.feature-photo,
.feature-card,
.service-card,
.gallery-card,
.address-panel,
.contact-card,
.stat {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--card-shadow);
}

.hero-photo {
  position: relative;
  min-height: 0;
  height: clamp(420px, 48vw, 620px);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 34, 49, 0.05) 20%, rgba(12, 34, 49, 0.66) 100%);
}

.photo-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
  color: white;
  text-align: left;
}

.photo-caption span,
.feature-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.photo-caption strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-card {
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(21, 52, 74, 0.98), rgba(20, 63, 90, 0.94));
  color: white;
  text-align: left;
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
  align-items: stretch;
}

.stat {
  padding: 22px 24px;
  text-align: left;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
  text-align: left;
}

.section-heading h2,
.about-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  color: var(--navy-deep);
}

.service-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-card,
.contact-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px;
  text-align: left;
}

.service-card h3,
.contact-card h3,
.address-panel h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.showcase-section {
  position: relative;
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 40px 0 -10px;
  z-index: -1;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(21, 52, 74, 0.06), rgba(201, 162, 77, 0.1)),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(21, 52, 74, 0.03) 26px 27px);
}

.gallery-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 260px;
  align-items: stretch;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-card {
  min-height: 100%;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  text-align: left;
}

.address-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 32px;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: white;
  text-align: left;
}

.address-panel h3 {
  color: white;
}

.address-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  text-align: center;
}

.site-footer p {
  margin: 4px 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero,
  .service-grid,
  .gallery-grid,
  .about-layout,
  .contact-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-large {
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .top-nav,
  .hero-actions,
  .hero-points {
    width: 100%;
  }

  .top-nav,
  .hero-actions {
    flex-wrap: wrap;
  }

  .top-nav {
    gap: 14px 20px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-photo {
    height: 380px;
  }
}
