/* ═══════════════════════════════════════════════════════════════════════════
   BHAJAN CIRCLE — An Evening of Devotion, Music & Indian Values
   Palette + texture extracted from the Theme Breakdown moodboard.
   Typography: Option 2 — moderate-contrast serif + rounded geometric sans.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────── Tokens ───────────────────────────── */
:root {
  /* Palette */
  --parchment-bg:       #F3E9D3;
  --parchment-bg-alt:   #ECE0C4;
  --maroon-deep:        #5C2A28;
  --maroon-text:        #6B3226;
  --copper-bronze:      #A85B2C;
  --copper-bronze-dark: #7A3E1A;
  --gold-accent:        #C9A227;
  --sage-green:         #7A8B6F;
  --dusty-teal:         #6E8F94;
  --lotus-pink:         #E5A79C;
  --cream-highlight:    #E8DCC0;

  /* Typography ─────────────────────────────────────────────────────────────
     Option 2 reproduced with Google Fonts. To match the PDF exactly instead,
     swap --font-heading to "Sahitya" (Google Fonts, 400/700) and add it to the
     <link> in index.html — that is the typeface the original mockup embeds. */
  --font-heading: "PT Serif", "Sahitya", Georgia, "Times New Roman", serif;
  --font-body:    "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-wordmark:"Playfair Display", Georgia, serif;  /* pull-quote accent only */
  --font-caps:    "Montserrat", "Poppins", system-ui, sans-serif;

  /* Rhythm */
  --wrap:      1140px;
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius:    14px;
  --header-h:  clamp(76px, 11vw, 108px);

  /* Aged-paper grain, generated inline so the page stays self-contained */
  --paper-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)'/%3E%3C/svg%3E");

  /* Flecks of gold leaf scattered through the paper */
  --gold-speckle:
    radial-gradient(circle at 18% 26%, rgba(201,162,39,.16) 0 1.4px, transparent 1.5px),
    radial-gradient(circle at 71% 62%, rgba(201,162,39,.13) 0 1.1px, transparent 1.2px),
    radial-gradient(circle at 44% 88%, rgba(168, 91,44,.10) 0 1.2px, transparent 1.3px);
}

/* ───────────────────────────── Reset ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--parchment-bg);
  color: var(--maroon-text);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain over the whole page — decorative, never intercepts clicks */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--paper-grain);
  background-size: 240px 240px;
  opacity: .13;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9999;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--maroon-deep);
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
  text-wrap: balance;
}

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

a {
  color: var(--copper-bronze-dark);
  text-decoration-color: rgba(201,162,39,.55);
  text-underline-offset: .22em;
  transition: color .2s ease, text-decoration-color .2s ease;
}
a:hover { color: var(--maroon-deep); text-decoration-color: var(--gold-accent); }

:focus-visible {
  outline: 2px solid var(--copper-bronze);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--maroon-deep); color: var(--parchment-bg);
  padding: .65rem 1.25rem; border-radius: 0 0 10px 10px;
  font-family: var(--font-caps); font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translate(-50%, 0); color: var(--parchment-bg); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─────────────────── Shared type & ornament pieces ─────────────────── */
.eyebrow {
  font-family: var(--font-caps);
  font-weight: 600;
  font-size: clamp(.66rem, .6rem + .22vw, .76rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  /* The darker copper is used for small type: #A85B2C only reaches 4.15:1 on
     parchment, while #7A3E1A clears AA at 6.9:1. */
  color: var(--copper-bronze-dark);
  margin: 0 0 .9rem;
}

.section {
  position: relative;
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section--alt { background-color: var(--parchment-bg-alt); }

/* Soft watercolour washes bleeding in from the edges, as in the moodboard */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at -8% 18%,  rgba(110,143,148,.20), transparent 70%),
    radial-gradient(52% 46% at 106% 82%, rgba(122,139,111,.18), transparent 70%),
    var(--gold-speckle);
  background-size: auto, auto, 130px 130px, 190px 190px, 160px 160px;
}
.section > .wrap { position: relative; z-index: 1; }

/* Thin gold flourish standing in for <hr> between sections */
.flourish {
  display: block;
  width: min(260px, 62%);
  height: auto;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  fill: none;
  stroke: var(--gold-accent);
  stroke-width: 1.1;
  stroke-linecap: round;
  opacity: .85;
}

.section__head { text-align: center; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }

.section__title {
  position: relative;
  display: inline-block;
  font-size: clamp(1.85rem, 1.3rem + 2.4vw, 3rem);
  letter-spacing: .005em;
}

.section__lede {
  max-width: 56ch;
  margin: 1.1rem auto 0;
  color: var(--maroon-text);
  opacity: .92;
}

/* Small hanging bells flanking a heading, echoing the logo's bell detail */
.title-bell {
  position: absolute;
  top: -.35em;
  width: clamp(16px, 3vw, 22px);
  height: auto;
  fill: none;
  stroke: var(--gold-accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .8;
}
.title-bell--left  { right: 100%; margin-right: clamp(.6rem, 2.5vw, 1.5rem); }
.title-bell--right { left: 100%;  margin-left:  clamp(.6rem, 2.5vw, 1.5rem); transform: scaleX(-1); }
@media (max-width: 33.75rem) { .title-bell { display: none; } }

/* Line-art icons, matched to the circled icons in the Theme Breakdown */
.ico {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico--sm { width: 1.15em; height: 1.15em; flex: none; }

.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,.6);
  padding-bottom: 2px;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { border-bottom-color: var(--copper-bronze); }

/* ───────────────────────────── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(.92rem, .88rem + .18vw, 1rem);
  letter-spacing: .015em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease,
              border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--copper-bronze), var(--copper-bronze-dark));
  color: #FFF8EC;
  box-shadow: 0 8px 22px -12px rgba(92,42,40,.75);
}
/* Gold hover keeps AA contrast by switching the label to deep maroon */
.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-accent), #B08C1C);
  color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(92,42,40,.6);
}

.btn__lotus {
  width: 1.5em; height: 1.05em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: .9;
}

.btn--ghost {
  background: transparent;
  color: var(--maroon-deep);
  border-color: rgba(168,91,44,.45);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--copper-bronze);
  background: rgba(232,220,192,.6);
  transform: translateY(-2px);
}

/* ═══════════════════════════ Header / nav ═══════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243,233,211,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,.28);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(243,233,211,.95);
  box-shadow: 0 10px 30px -22px rgba(92,42,40,.75);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: .5rem;
}

.brand { display: inline-flex; line-height: 0; }
/* The lockup is a tall mark (the tanpura neck rises above the wordmark), so it
   is kept modest here to leave breathing room inside the sticky bar. */
.brand__logo {
  width: clamp(96px, 11vw, 118px);
  height: auto;
  transition: width .3s ease;
}
.site-header.is-scrolled .brand__logo { width: clamp(84px, 9vw, 100px); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}
.nav__list a {
  font-family: var(--font-caps);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  text-decoration: none;
  padding-block: .4rem;
  position: relative;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--gold-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--copper-bronze);
  color: #FFF8EC !important;
  padding: .62rem 1.35rem !important;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.nav__cta::after { display: none; }
.nav__cta:hover,
.nav__cta:focus-visible { background: var(--gold-accent); color: var(--maroon-deep) !important; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(168,91,44,.4);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 5px; width: 22px; }
.nav-toggle__bars span {
  height: 1.8px;
  background: var(--maroon-deep);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

@media (max-width: 52.5rem) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--parchment-bg);
    border-bottom: 1px solid rgba(201,162,39,.3);
    box-shadow: 0 20px 34px -26px rgba(92,42,40,.8);
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    min-height: 0;
  }
  .nav.is-open { grid-template-rows: 1fr; }
  .nav:not(.is-open) .nav__list > * { visibility: hidden; }

  .nav__list > li { border-top: 1px solid rgba(201,162,39,.22); }
  .nav__list > li:first-child { border-top: none; }
  .nav__list a { display: block; padding: 1.05rem var(--gutter); font-size: .8rem; }
  .nav__list a::after { display: none; }
  .nav__list a.is-active { color: var(--copper-bronze); }

  .nav__cta {
    margin: 1rem var(--gutter) 1.35rem;
    text-align: center;
    padding: .95rem 1.35rem !important;
  }
}

/* ═════════════════════════════════ Hero ═════════════════════════════════ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(15rem, 34vw, 22rem);
  text-align: center;
  background:
    radial-gradient(70% 55% at 50% 0%,   rgba(232,220,192,.9), transparent 72%),
    radial-gradient(46% 40% at -6% 44%,  rgba(110,143,148,.24), transparent 72%),
    radial-gradient(46% 40% at 106% 30%, rgba(122,139,111,.22), transparent 72%),
    var(--gold-speckle);
  background-color: var(--parchment-bg);
  background-size: auto, auto, auto, 140px 140px, 200px 200px, 170px 170px;
}

/* Cusped temple arch drawn behind the lockup */
.hero__arch {
  position: absolute;
  left: 50%;
  bottom: clamp(6rem, 16vw, 11rem);
  transform: translateX(-50%);
  width: min(88vw, 640px);
  height: auto;
  z-index: -2;
  fill: none;
  stroke: var(--gold-accent);
  stroke-width: 1;
  opacity: .3;
}
.hero__arch path:last-child { opacity: .55; }

/* Watercolour band: temple, river and lotus pond, melting into the paper */
.hero__art {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(230px, 42vw, 430px);
  z-index: -1;
  background-image: url("assets/hero-art.jpg");
  background-size: cover;
  background-position: center 34%;
  mix-blend-mode: multiply;
  opacity: .88;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 26%, #000 62%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 26%, #000 62%);
}

.hero__inner { position: relative; z-index: 1; }

.hero__logo {
  width: clamp(238px, 44vw, 420px);
  margin: 0 auto clamp(1.5rem, 3.5vw, 2.25rem);
  filter: drop-shadow(0 6px 18px rgba(92,42,40,.14));
}

.hero__title {
  font-size: clamp(1.95rem, 1.2rem + 3.6vw, 3.6rem);
  letter-spacing: -.005em;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}
@media (max-width: 34rem) { .br-wide { display: none; } }

.hero__lede {
  max-width: 44ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem);
  color: var(--maroon-text);
}

.hero__meta {
  display: grid;
  gap: 1rem;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3rem);
  text-align: left;
}
.hero__meta li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: start;
  gap: .9rem;
  font-size: clamp(.94rem, .9rem + .2vw, 1.02rem);
  line-height: 1.55;
}
.hero__meta .ico {
  width: 2rem; height: 2rem;
  color: var(--copper-bronze);
  stroke-width: 1.3;
  margin-top: -.15rem;
}
.hero__meta strong { color: var(--maroon-deep); font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__note {
  font-family: var(--font-caps);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-bronze-dark);
  opacity: .85;
  margin: 0;
}

/* ═════════════════════════════════ About ═════════════════════════════════ */
.about {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 56.25rem) {
  .about { grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}

.about__copy p { max-width: 62ch; }

/* Illustration + devotional line share the narrower column, which keeps the
   two sides close in height instead of leaving the right-hand side empty. */
.about__side {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  align-content: start;
}

.pullquote {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  border-block: 1px solid rgba(201,162,39,.45);
}
/* Small lotus centred on the top rule */
.pullquote::before {
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--parchment-bg-alt);
  border-top: 1px solid var(--gold-accent);
  border-left: 1px solid var(--gold-accent);
}
.pullquote blockquote { margin: 0; }
.pullquote p {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.5vw, 1.85rem);
  line-height: 1.5;
  color: var(--copper-bronze-dark);
  margin: 0 0 .6rem;
}
.pullquote figcaption {
  font-family: var(--font-caps);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon-text);
  opacity: .75;
}
.pullquote cite { font-style: normal; }

.about__art { margin: 0; }
.about__art img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(201,162,39,.5);
  box-shadow: 0 22px 44px -30px rgba(92,42,40,.8);
}
.about__art figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-top: .95rem;
  font-family: var(--font-caps);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper-bronze-dark);
}

/* The five identity motifs */
.motifs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 720px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(201,162,39,.35);
  text-align: center;
}
.motif__ring {
  display: grid;
  place-items: center;
  width: clamp(52px, 12vw, 64px);
  height: clamp(52px, 12vw, 64px);
  margin: 0 auto .7rem;
  padding: clamp(11px, 2.6vw, 14px);
  border: 1px solid rgba(201,162,39,.6);
  border-radius: 50%;
  color: var(--copper-bronze);
  background: rgba(255,251,240,.45);
}
.motif__label {
  display: block;
  font-family: var(--font-caps);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon-deep);
}

/* ════════════════════════════ Singer lineup ════════════════════════════ */
.performers {
  display: grid;
  grid-template-columns: 1fr;              /* 1 column on mobile */
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}
@media (min-width: 35rem)   { .performers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 56.25rem){ .performers { grid-template-columns: repeat(3, 1fr); } }

.performer {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 1.75rem) clamp(1.75rem, 4vw, 2.25rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(255,252,244,.72), rgba(236,224,196,.5));
  border: 1px solid rgba(201,162,39,.4);
  border-radius: var(--radius);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.performer:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,.75);
  box-shadow: 0 24px 40px -30px rgba(92,42,40,.85);
}

/* Circular photo frame with a thin gold ring */
.performer__frame {
  display: grid;
  place-items: center;
  width: clamp(112px, 26vw, 138px);
  height: clamp(112px, 26vw, 138px);
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 34%, #FBF5E7, var(--cream-highlight));
  border: 1px solid var(--gold-accent);
  box-shadow: 0 0 0 5px var(--parchment-bg), 0 0 0 6px rgba(201,162,39,.35);
}
.performer__frame img { width: 100%; height: 100%; object-fit: cover; }

/* Lotus placeholder shown until a real portrait is dropped in */
.performer__glyph {
  width: 56%;
  height: auto;
  fill: none;
  stroke: var(--copper-bronze);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .5;
}

.performer__role {
  font-family: var(--font-caps);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-bronze-dark);
  margin: 0 0 .45rem;
}
.performer__name {
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
  margin-bottom: .5rem;
}
.performer__bio {
  margin: 0;
  font-size: .93rem;
  color: var(--maroon-text);
  opacity: .82;
}

/* ════════════════════════════ Event details ════════════════════════════ */
.details {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
}
@media (min-width: 51.25rem) { .details { grid-template-columns: repeat(3, 1fr); } }

.detail {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.35rem, 3vw, 1.9rem);
  text-align: center;
  background: rgba(255,252,244,.55);
  border: 1px solid rgba(201,162,39,.4);
  border-radius: var(--radius);
}

/* Line-art icon in a thin gold circle, as in the Theme Breakdown */
.detail__ring {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  margin: 0 auto 1.25rem;
  padding: 15px;
  border: 1px solid rgba(201,162,39,.65);
  border-radius: 50%;
  color: var(--copper-bronze);
  background: rgba(255,251,240,.6);
  box-shadow: inset 0 0 0 4px rgba(255,251,240,.5);
}

.detail__label {
  font-family: var(--font-caps);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper-bronze-dark);
  margin-bottom: .6rem;
}
.detail__value {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1rem + .45vw, 1.25rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--maroon-deep);
  margin-bottom: .85rem;
}
/* The venue is an address, not a headline — smaller so the three cards
   stay close in height */
.detail__value--address {
  font-size: clamp(.95rem, .92rem + .2vw, 1.02rem);
  font-weight: 400;
  line-height: 1.62;
}
.detail__ac { font-weight: 400; font-size: .85em; }
.detail__note { margin: 0; font-size: .89rem; opacity: .82; }

/* ════════════════════════════ Registration ════════════════════════════ */
/* ── The one thing to tune when the Zoho form changes ───────────────────────
   Heights measured against the live form so the whole thing — down to the
   Submit button — fits without a nested scrollbar, which is miserable to use
   on a phone. They step back up on narrow screens because Zoho drops its
   paired fields (Phone/Email, City/State) into a single column.
   Add or remove fields → re-measure and nudge these four numbers.           */
.register { --zoho-height: 1520px; }
@media (max-width: 44rem) { .register { --zoho-height: 1420px; } }
@media (max-width: 36rem) { .register { --zoho-height: 1570px; } }
@media (max-width: 31rem) { .register { --zoho-height: 1680px; } }

.form-card {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255,252,244,.8), rgba(236,224,196,.62));
  border: 1px solid rgba(201,162,39,.7);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -44px rgba(92,42,40,.9);
}
/* Inner hairline, echoing the double-rule frames in the moodboard */
.form-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201,162,39,.32);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
}

.form-card__corner {
  position: absolute;
  top: 16px;
  width: clamp(24px, 5vw, 32px);
  color: var(--sage-green);
  opacity: .55;
  pointer-events: none;
}
.form-card__corner svg {
  width: 100%; height: auto;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-card__corner--tl { left: 16px;  transform: rotate(-32deg); }
.form-card__corner--tr { right: 16px; transform: rotate(32deg) scaleX(-1); }
@media (max-width: 40rem) { .form-card__corner { display: none; } }

.form-card__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  background: #FFFDF7;
  box-shadow: inset 0 0 0 1px rgba(201,162,39,.3);
}

.zoho-embed {
  display: block;
  width: 100%;
  height: var(--zoho-height);
  min-height: 500px;
  border: 0;
}

.form-card__fallback {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: .89rem;
  opacity: .85;
}

/* ═══════════════════════════════ Footer ═══════════════════════════════ */
.site-footer {
  position: relative;
  margin-top: clamp(3rem, 8vw, 6rem);
  padding-top: clamp(5rem, 11vw, 8rem);
  background: var(--maroon-deep);
  color: #EADFC8;
  font-size: .94rem;
}

/* Water ripples along the top edge */
.ripple {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: clamp(52px, 8vw, 90px);
  transform: translateY(-99%);
  display: block;
}
.ripple path { fill: var(--maroon-deep); }
.ripple__a { opacity: .3; }
.ripple__b { opacity: .55; }
.ripple__c { opacity: 1; }

.site-footer__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 56.25rem) {
  .site-footer__inner { grid-template-columns: minmax(0, .9fr) minmax(0, 1.6fr); align-items: start; }
}

.site-footer__brand img {
  width: 190px;
  /* Lift the copper wordmark off the deep maroon so it stays legible */
  filter: brightness(0) saturate(100%) invert(92%) sepia(16%) saturate(420%) hue-rotate(348deg) brightness(103%) contrast(93%);
  opacity: .95;
  margin-bottom: 1.25rem;
}
.site-footer__blessing {
  font-family: var(--font-wordmark);
  font-size: 1.6rem;
  color: var(--gold-accent);
  margin: 0 0 .6rem;
  line-height: 1;
}
.site-footer__line {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 32ch;
  color: #F0E6D2;
  margin: 0;
}

.site-footer__cols {
  display: grid;
  gap: clamp(2rem, 5vw, 2.5rem);
}
@media (min-width: 30rem) { .site-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68.75rem) { .site-footer__cols { grid-template-columns: repeat(3, 1fr); } }

.site-footer__heading {
  font-family: var(--font-caps);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1rem;
}
.site-footer__col ul { display: grid; gap: .25rem; }
/* Padded so the links are comfortable to tap, not 21px slivers of text */
.site-footer__col ul a { display: inline-block; padding-block: .32rem; }
.site-footer__col a { color: #EADFC8; text-decoration: none; }
.site-footer__col a:hover,
.site-footer__col a:focus-visible { color: var(--gold-accent); }
.site-footer__col address { font-style: normal; line-height: 1.7; margin-bottom: .85rem; opacity: .9; }
.site-footer__col .link-arrow { color: var(--gold-accent); border-bottom-color: rgba(201,162,39,.5); }

.site-footer__legal {
  grid-column: 1 / -1;   /* full width, not stuck in the brand column */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem .75rem;
  margin: 0;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(201,162,39,.25);
  font-family: var(--font-caps);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(234,223,200,.75);
}

/* ══════════════════════════ Scroll reveal ══════════════════════════
   The .reveal class is applied by script.js, so content is never hidden
   if JavaScript fails to run. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

@media print {
  .site-header, .nav-toggle, .skip-link, .ripple, .hero__art, .hero__arch { display: none !important; }
  body { background: #fff; color: #000; }
}
