:root {
  --cream: #fff7ea;
  --cream-deep: #f6e0bd;
  --white: #ffffff;
  --saffron: #f29d22;
  --gold: #f7c85f;
  --red: #b51e23;
  --red-deep: #7c1018;
  --maroon: #4b1114;
  --ink: #25130d;
  --text: #49362c;
  --muted: #77675e;
  --line: rgba(75, 17, 20, 0.14);
  --shadow: 0 22px 58px rgba(96, 42, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Source Sans 3", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(181, 30, 35, 0.16);
  background: rgba(255, 247, 234, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand img {
  width: 98px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--red-deep);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.18;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 26px);
  color: #3f2d25;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-button {
  min-height: 42px;
  padding: 11px 18px !important;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(181, 30, 35, 0.2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(181, 30, 35, 0.22);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--red-deep);
}

.section {
  padding: clamp(62px, 9vw, 110px) max(clamp(20px, 5vw, 72px), calc((100vw - 1440px) / 2 + 72px));
}

.section-pattern {
  position: relative;
  overflow: hidden;
}

.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 200, 95, 0.24), transparent 20rem),
    radial-gradient(circle at 86% 8%, rgba(181, 30, 35, 0.1), transparent 24rem),
    repeating-radial-gradient(circle at 100% 100%, rgba(124, 16, 24, 0.08) 0 1px, transparent 1px 18px);
}

.hero {
  min-height: calc(100vh - 89px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
  padding: clamp(64px, 8vw, 104px) max(clamp(20px, 5vw, 72px), calc((100vw - 1440px) / 2 + 72px));
  background:
    linear-gradient(120deg, rgba(255, 247, 234, 0.98) 0%, rgba(255, 247, 234, 0.88) 48%, rgba(124, 16, 24, 0.13) 100%),
    url("https://images.unsplash.com/photo-1604608678051-64d46d56f82d?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-content,
.hero-card,
.section-heading,
.about-grid,
.membership-grid,
.membership-form-box,
.events-grid,
.donate-card,
.committee-grid,
.coordinator-block,
.coordinator-grid,
.contact-layout {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--red-deep);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.28;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--maroon);
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  font-weight: 900;
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: #4e382d;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 16px 34px rgba(181, 30, 35, 0.26);
}

.button.secondary {
  color: var(--red-deep);
  border-color: rgba(124, 16, 24, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.button.light {
  color: var(--red-deep);
  background: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-meta span {
  padding: 9px 13px;
  border: 1px solid rgba(181, 30, 35, 0.15);
  border-radius: 999px;
  color: var(--red-deep);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-card {
  display: grid;
  gap: 18px;
  width: min(100%, 580px);
  justify-self: end;
}

.temple-arch {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 180px 180px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 239, 209, 0.9)),
    linear-gradient(135deg, rgba(247, 200, 95, 0.18), rgba(181, 30, 35, 0.09));
  box-shadow: var(--shadow);
}

.temple-arch img {
  width: min(100%, 300px);
  filter: drop-shadow(0 18px 30px rgba(124, 16, 24, 0.16));
}

.hero-card-text {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(96, 42, 16, 0.1);
}

.hero-card-text p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.5;
}

.om-symbol {
  display: inline-grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 1.7rem;
  font-weight: 900;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 36px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-section,
.events-section,
.contact-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 26px;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(96, 42, 16, 0.08);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: 18px;
}

.values-grid,
.membership-grid,
.events-grid,
.committee-grid,
.coordinator-grid {
  display: grid;
  gap: 18px;
}

.values-grid {
  grid-template-columns: 1fr;
}

.values-grid div {
  padding: 24px;
  border: 1px solid rgba(181, 30, 35, 0.13);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff1db);
  box-shadow: 0 14px 36px rgba(96, 42, 16, 0.08);
}

.values-grid span,
.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-size: 0.86rem;
  font-weight: 900;
}

.values-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
}

.values-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.membership-section {
  background:
    linear-gradient(180deg, #fff7ea 0%, #f6e0bd 100%);
}

.membership-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  min-height: 308px;
  padding: 26px;
  border: 1px solid rgba(124, 16, 24, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(96, 42, 16, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card:hover,
.event-card:hover,
.committee-grid article:hover,
.coordinator-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(96, 42, 16, 0.15);
}

.price-card.featured {
  border-color: rgba(181, 30, 35, 0.32);
  background: linear-gradient(180deg, #ffffff, #fff0d2);
}

.price-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-card strong {
  display: block;
  margin-top: 24px;
  color: var(--red-deep);
  font-size: 2.8rem;
  line-height: 1;
}

.membership-form-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 28px;
  border: 1px solid rgba(181, 30, 35, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(96, 42, 16, 0.1);
}

.membership-form-box h3 {
  font-size: 1.45rem;
}

.membership-form-box p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.events-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.featured-event {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: start;
  margin-bottom: clamp(46px, 6vw, 72px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(181, 30, 35, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 6%, rgba(247, 200, 95, 0.2), transparent 18rem),
    linear-gradient(135deg, #fffdf9, #fff3df);
  box-shadow: 0 24px 58px rgba(96, 42, 16, 0.12);
}

.featured-event-poster {
  overflow: visible;
  border-radius: 26px;
  background:
    linear-gradient(180deg, #fffdf7, #fff1d7);
  box-shadow: 0 18px 38px rgba(75, 17, 20, 0.16);
}

.featured-event-poster img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  border-radius: 22px;
}

.featured-event-content {
  display: grid;
  align-content: center;
  padding: clamp(12px, 2vw, 22px);
}

.featured-event-content h3 {
  color: var(--red-deep);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.featured-event-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.event-detail-grid div {
  padding: 18px;
  border: 1px solid rgba(181, 30, 35, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.event-detail-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-detail-grid strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.event-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.event-types-heading {
  max-width: 980px;
  margin-bottom: 28px;
}

.event-types-heading h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
}

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(96, 42, 16, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-card h3,
.event-card p {
  padding-inline: 20px;
}

.event-card h3 {
  margin-top: 20px;
}

.event-card p {
  margin: 10px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.event-image {
  height: 190px;
  overflow: hidden;
  background: var(--cream-deep);
  border-bottom: 6px solid var(--red);
}

.event-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.donate-section {
  background:
    linear-gradient(135deg, rgba(124, 16, 24, 0.96), rgba(181, 30, 35, 0.88)),
    var(--red-deep);
}

.donate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 200, 95, 0.2), transparent 18rem),
    rgba(255, 255, 255, 0.08);
}

.donate-card .eyebrow,
.donate-card h2 {
  color: var(--gold);
}

.donate-card p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.committee-section {
  background: #fffaf2;
  padding-top: clamp(58px, 7vw, 84px);
  padding-bottom: clamp(58px, 7vw, 84px);
}

.committee-section .section-heading {
  margin-bottom: 24px;
}

.committee-section .section-heading h2 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
}

.committee-section .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
}

.committee-section .section-heading + .committee-grid,
.coordinator-block .section-heading + .coordinator-grid {
  margin-top: 0;
}

.committee-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.committee-grid article,
.coordinator-grid article {
  min-height: 138px;
  padding: 24px;
  border: 1px solid rgba(181, 30, 35, 0.14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(96, 42, 16, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.coordinator-block {
  margin-top: clamp(38px, 5vw, 58px);
  padding-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid rgba(181, 30, 35, 0.12);
}

.coordinator-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.coordinator-grid article {
  min-height: 112px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 200, 95, 0.16), transparent 8rem),
    linear-gradient(135deg, #ffffff, #fff8ec);
}

.committee-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.committee-grid h3,
.coordinator-grid h3 {
  font-size: 1.12rem;
  line-height: 1.32;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.75;
}

.email-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red-deep);
  font-size: 1.12rem;
  font-weight: 900;
}

.address-box {
  max-width: 520px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(181, 30, 35, 0.14);
  border-radius: 22px;
  background: #fffaf2;
  box-shadow: 0 14px 34px rgba(96, 42, 16, 0.08);
}

.address-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.address-box strong {
  display: block;
  color: var(--ink);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.form-honey {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(75, 17, 20, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(242, 157, 34, 0.25);
  border-color: var(--saffron);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red-deep);
  font-weight: 800;
}

.form-status.is-success {
  color: #1f6f45;
}

.form-status.is-error {
  color: var(--red-deep);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #ffe9c8;
  background: var(--ink);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer span,
.site-footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .membership-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .committee-grid,
  .coordinator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-grid .event-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .site-header {
    align-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 89px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(181, 30, 35, 0.16);
    border-radius: 24px;
    background: rgba(255, 247, 234, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-button {
    min-height: 44px;
    padding: 12px 14px !important;
    border-radius: 14px;
  }

  .hero,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: stretch;
    width: 100%;
  }

  .temple-arch {
    min-height: 300px;
  }

  .donate-card,
  .membership-form-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 82px;
    height: 54px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-meta,
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .event-contact-row {
    flex-direction: column;
  }

  .featured-event {
    grid-template-columns: 1fr;
  }

  .featured-event-poster img {
    max-height: none;
  }

  .membership-grid,
  .events-grid,
  .committee-grid,
  .coordinator-grid {
    grid-template-columns: 1fr;
  }

  .events-grid .event-card:last-child {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
