/* ============================================
   LAYOUT — Shri Damodar Temple, Zambaulim
   Two-tier header, cinematic hero, sacred footer,
   navigation, grid, breadcrumbs, scroll elements
   ============================================ */


/* ── Local Layout Variables ───────────────── */

:root {
  --header-height: 64px;
  --mantra-strip-height: 30px;
  --header-total-offset: calc(var(--mantra-strip-height) + var(--header-height));
}


/* ── Container ────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-md);
}

.container--wide {
  max-width: var(--container-max);
}


/* ── Section ──────────────────────────────── */

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

.section--alt {
  padding: 5rem 0;
  background-color: var(--color-bg-secondary);
  position: relative;
}

/*
 * Decorative top border on alt sections:
 * Gold gradient that fades from transparent at
 * the edges to gold-200 in the center.
 */
.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold-200) 25%,
    var(--color-gold-300) 50%,
    var(--color-gold-200) 75%,
    transparent 100%
  );
}

.section--dark {
  padding: 5rem 0;
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
  position: relative;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inverse);
}


/* ── Grid ─────────────────────────────────── */

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2col { grid-template-columns: 1fr; }
.grid--3col { grid-template-columns: 1fr; }
.grid--4col { grid-template-columns: 1fr; }


/* ════════════════════════════════════════════
   MANTRA STRIP — Sacred invocation at top
   ════════════════════════════════════════════ */

.mantra-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 6px 0;
  background-color: var(--color-saffron-600);
  z-index: var(--z-sticky);
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  line-height: 1.4;
  user-select: none;
}


/* ════════════════════════════════════════════
   SITE HEADER — Fixed below mantra strip
   ════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: var(--mantra-strip-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-sticky);
  background: rgba(42, 31, 24, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background-color 350ms ease,
    box-shadow 350ms ease,
    border-color 350ms ease;
}

.site-header.is-scrolled {
  background: #2A1F18;
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: #FFFFFF;
  flex-shrink: 0;
}

.site-header__brand:hover {
  color: #FFFFFF;
}

.site-header__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition:
    width 300ms var(--ease-out-smooth),
    height 300ms var(--ease-out-smooth);
}

.site-header.is-scrolled .site-header__logo {
  width: 34px;
  height: 34px;
}

.site-header__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: #FFFFFF;
}

.site-header__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: var(--letter-spacing-wide);
  display: block;
}


/* ── Desktop Navigation ───────────────────── */

.site-nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  border-radius: var(--radius-sm);
  transition:
    color 200ms ease,
    opacity 200ms ease;
}

.nav__link:hover {
  color: #FFFFFF;
  opacity: 1;
}

.nav__link.is-active {
  color: #FFFFFF;
  opacity: 1;
  font-weight: 600;
}

.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background-color: var(--color-saffron-500);
  border-radius: 1px;
}

/* Header donate button — hidden on mobile, shown on desktop */
.site-header .btn--header-donate {
  display: none;
  margin-left: var(--space-4);
  flex-shrink: 0;
}


/* ── Hamburger ────────────────────────────── */

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 1);
  background: none;
  border: none;
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 1px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.hamburger__line + .hamburger__line {
  margin-top: 5px;
}

body.is-menu-open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.is-menu-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.is-menu-open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── Mobile Menu ──────────────────────────── */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-cream);
  z-index: var(--z-overlay);
  transition: right 400ms var(--ease-out-smooth);
  overflow-y: auto;
  padding: calc(var(--header-total-offset) + var(--space-5)) var(--space-6) var(--space-6);
  box-shadow: -8px 0 40px rgba(28, 20, 16, 0.18);
  border-left: 1px solid var(--color-sand-200);
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-gold-600),
    var(--color-gold-400) 30%,
    var(--color-saffron-500) 50%,
    var(--color-gold-400) 70%,
    var(--color-gold-600)
  );
}

body.is-menu-open .mobile-menu {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 20, 16, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 350ms ease,
    visibility 350ms ease;
}

body.is-menu-open .mobile-menu__overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 450;
  color: var(--color-stone-700);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active {
  color: var(--color-saffron-700);
  background-color: rgba(200, 101, 27, 0.06);
  border-left-color: var(--color-saffron-500);
}

.mobile-menu__link + .mobile-menu__link {
  margin-top: 2px;
}


/* ════════════════════════════════════════════
   PAGE HERO — Inner pages (non-home)
   ════════════════════════════════════════════ */

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: calc(var(--header-total-offset) + var(--space-10)) var(--container-padding) var(--space-10);
  background-color: var(--color-stone-800);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(42, 31, 24, 0.85) 0%,
      rgba(42, 31, 24, 0.5) 40%,
      rgba(42, 31, 24, 0.4) 70%,
      rgba(42, 31, 24, 0.65) 100%
    );
}

/* Vignette for inner pages */
.page-hero__overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse 70% 60% at 50% 45%,
    transparent 0%,
    rgba(28, 20, 16, 0.35) 100%
  );
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--container-md);
}

/* Hero label for inner pages */
.page-hero__label {
  display: block;
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold-300);
  text-transform: none;
  letter-spacing: var(--letter-spacing-wider);
  margin-bottom: var(--space-4);
}

.page-hero__label::before {
  content: '\2014\2002';
}

.page-hero__label::after {
  content: '\2002\2014';
}

/* Inner page hero title */
.page-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #FFFFFF;
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-shadow:
    0 1px 3px rgba(28, 20, 16, 0.30),
    0 6px 20px rgba(28, 20, 16, 0.20);
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(253, 246, 240, 0.82);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-6);
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
}


/* ════════════════════════════════════════════
   HOME HERO — THE SHOWSTOPPER
   Full-viewport cinematic temple experience
   ════════════════════════════════════════════ */

.page-hero--home {
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
}

/* Cinematic overlay: warm sacred glow at bottom,
   dark temple shadow at top */
.page-hero--home .page-hero__overlay {
  background:
    radial-gradient(
      ellipse at 50% 100%,
      rgba(232, 115, 26, 0.25) 0%,
      transparent 50%
    ),
    linear-gradient(
      to top,
      rgba(42, 31, 24, 0.9) 0%,
      rgba(42, 31, 24, 0.5) 30%,
      rgba(42, 31, 24, 0.3) 60%,
      rgba(42, 31, 24, 0.6) 100%
    );
}


/* ── Temple Arch Frame ────────────────────── */
/*
 * A decorative CSS arch that frames the hero
 * content like a sacred temple doorway, with
 * a rounded top evoking Goan temple architecture.
 */

.page-hero__arch {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 340px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 0 0;
  text-align: center;
}

/* Inner glow on the arch border */
.page-hero__arch::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50% 50% 0 0;
  background: transparent;
  box-shadow:
    inset 0 0 30px rgba(232, 115, 26, 0.06),
    inset 0 0 60px rgba(201, 178, 122, 0.04);
  pointer-events: none;
}

/* Decorative keystone at top of arch */
.page-hero__arch::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-gold-300);
  border-radius: var(--radius-full);
  opacity: 0.4;
}


/* ── Om Symbol ────────────────────────────── */

.page-hero__om {
  display: block;
  font-size: 2.2rem;
  color: var(--color-saffron-400);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: var(--space-4);
  text-shadow:
    0 0 20px rgba(240, 141, 32, 0.3),
    0 0 40px rgba(240, 141, 32, 0.15),
    0 0 80px rgba(240, 141, 32, 0.08);
  user-select: none;
}


/* ── Hindi Title ──────────────────────────── */

.page-hero__title-hindi {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-gold-300);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  line-height: var(--line-height-normal);
}


/* ── Home Hero Title ──────────────────────── */

.page-hero--home .page-hero__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 8px 30px rgba(0, 0, 0, 0.2);
}


/* ── Location Line ────────────────────────── */

.page-hero__location {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--space-2);
}


/* ── Mantra Below Arch ────────────────────── */

.page-hero__mantra {
  position: relative;
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-gold-300);
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin: 1.5rem 0;
  text-align: center;
  user-select: none;
}


/* ── Hero Action Buttons ──────────────────── */

.page-hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}


/* ── Scroll Indicator ─────────────────────── */
/*
 * Thin animated vertical line at hero bottom.
 * Minimal, contemplative, temple-paced.
 */

.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-indicator__text {
  display: none;
}

.scroll-indicator__icon {
  display: none;
}

.scroll-indicator__line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
  background: rgba(253, 246, 240, 0.12);
}

.scroll-indicator__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(253, 246, 240, 0.6) 40%,
    rgba(253, 246, 240, 0.6) 60%,
    transparent
  );
  animation: scrollLine 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  100% {
    top: 200%;
  }
}


/* ════════════════════════════════════════════
   BREADCRUMBS
   ════════════════════════════════════════════ */

.breadcrumbs {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-sand-100);
  padding: var(--space-3) 0;
  margin-top: var(--header-total-offset);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-family: var(--font-body);
}

.breadcrumbs__link {
  color: var(--color-stone-500);
  text-decoration: none;
  transition: color 200ms ease;
}

.breadcrumbs__link:hover {
  color: var(--color-saffron-600);
}

.breadcrumbs__separator {
  color: var(--color-gold-400);
  font-size: 0.55em;
  vertical-align: 0.15em;
  opacity: 0.7;
  user-select: none;
}

.breadcrumbs__current {
  color: var(--color-stone-700);
  font-weight: 550;
}


/* ════════════════════════════════════════════
   SITE FOOTER — Dark temple aesthetic
   ════════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(180deg, #2A1F18 0%, #1A1208 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  position: relative;
}

/* Top decorative gold gradient border */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold-200) 25%,
    var(--color-gold-300) 50%,
    var(--color-gold-200) 75%,
    transparent 100%
  );
}

/* Sanskrit shloka above the grid */
.site-footer__shloka {
  display: block;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--color-gold-300);
  opacity: 0.4;
  padding: var(--space-8) 0 0;
  letter-spacing: 0.1em;
  user-select: none;
}

.site-footer__top {
  padding: var(--space-6) 0 var(--space-8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-saffron-400);
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}

.footer__text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-3);
}

.footer__link {
  display: inline-block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color 200ms ease;
}

.footer__link:hover {
  color: var(--color-saffron-400);
}

/* Footer bottom bar */
.site-footer__bottom-bar {
  padding: var(--space-4) 0;
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.15);
}

.site-footer__bottom-bar a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 200ms ease;
}

.site-footer__bottom-bar a:hover {
  color: #FFFFFF;
}


/* ════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-saffron-600);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(212, 94, 10, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base),
    background-color 200ms ease;
  z-index: var(--z-dropdown);
  cursor: pointer;
  border: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-saffron-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 94, 10, 0.4);
}

.back-to-top__icon {
  width: 18px;
  height: 18px;
}


/* ════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: var(--mantra-strip-height);
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-saffron-500);
  z-index: calc(var(--z-sticky) + 1);
  transition: width 60ms linear;
  pointer-events: none;
}


/* ════════════════════════════════════════════
   NO-JS NAVIGATION FALLBACK
   ════════════════════════════════════════════ */

.no-js-nav {
  background: var(--color-bg-secondary);
  padding: var(--space-3) var(--container-padding);
  text-align: center;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-sand-100);
}

.no-js-nav a {
  color: var(--color-text-secondary);
  text-decoration: none;
  margin: 0 var(--space-2);
  transition: color 200ms ease;
}

.no-js-nav a:hover {
  color: var(--color-saffron-600);
}


/* ════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════ */


/* ── 576px — Small tablets / large phones ─── */

@media (min-width: 576px) {
  .grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── 768px — Tablets ──────────────────────── */

@media (min-width: 768px) {
  .grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    min-height: 40vh;
  }

  .page-hero__title {
    font-size: var(--text-5xl);
  }

  .page-hero__subtitle {
    font-size: var(--text-xl);
  }

  .page-hero__label {
    font-size: var(--text-base);
  }

  /* Home hero scales up */
  .page-hero--home .page-hero__title {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
  }

  .page-hero__arch {
    max-width: 420px;
    padding: 3rem 2rem 2rem;
  }

  .page-hero__om {
    font-size: 3rem;
  }

  .page-hero__title-hindi {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
  }

  .page-hero__location {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── 1024px — Desktop ─────────────────────── */

@media (min-width: 1024px) {
  .site-nav {
    display: block;
  }

  .site-header .btn--header-donate {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu__overlay {
    display: none;
  }

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

  .grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-hero {
    min-height: 45vh;
  }

  /* Home hero at desktop: large and cinematic */
  .page-hero--home .page-hero__title {
    font-size: 4.5rem;
    letter-spacing: 0.08em;
  }

  .page-hero__arch {
    max-width: 480px;
    padding: 3.5rem 2.5rem 2.5rem;
  }

  .page-hero__om {
    font-size: 3.5rem;
  }

  .page-hero__title-hindi {
    font-size: 1.3rem;
    letter-spacing: 0.3em;
  }

  .page-hero__location {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }

  .page-hero__mantra {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}


/* ── 1280px — Large desktop ───────────────── */

@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }

  .page-hero__title {
    font-size: var(--text-6xl);
  }

  .page-hero--home .page-hero__title {
    font-size: 5rem;
  }

  .page-hero__arch {
    max-width: 520px;
    padding: 4rem 3rem 3rem;
  }
}
