*{box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
 --primary:#8a1d24;
 --primary-dark:#6d151b;
 --gold:#c9a467;
 --cream:#fbf7f0;
 --paper:#fffdf9;
 --ink:#1f1c1a;
 --muted:#675f5a;
 --line:#ece1d5;
}
body{
 margin:0;
 font-family:Inter,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
 color:var(--ink);
 background:var(--cream);
 line-height:1.62;
}
h1,h2,h3,.brand{font-family:Georgia,"Times New Roman",serif}
a{color:inherit}
.container{width:min(1220px,92%);margin:auto}

.topbar{
 background:#fffaf4;
 border-bottom:1px solid #eadfd4;
 position:sticky;top:0;z-index:100;
}
.nav{
 min-height:76px;
 display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.brand{
 text-decoration:none;
 color:var(--primary);
 font-size:1.42rem;
 font-weight:700;
 letter-spacing:-.01em;
}
.navlinks{display:flex;align-items:center;gap:28px}
.navlinks a{
 text-decoration:none;
 color:#3f3531;
 font-family:Georgia,"Times New Roman",serif;
 font-weight:700;
 font-size:1rem;
 position:relative;
 padding:10px 0 9px;
}
.menu-btn{display:none;border:0;background:none;color:var(--primary);font-size:28px}

.hero{
 position:relative;
 min-height:448px;
 background-size:cover;
 background-position:center;
 display:grid;align-items:center;
 color:#fff;
 overflow:hidden;
}
.hero:before{
 content:"";
 position:absolute;inset:0;
 background:linear-gradient(90deg,rgba(45,25,16,.78) 0%,rgba(56,31,18,.60) 28%,rgba(47,28,19,.08) 59%,rgba(48,29,24,.45) 100%);
}
.hero-inner{
 position:relative;z-index:2;
 width:min(1220px,92%);
 display:grid;grid-template-columns:1.15fr .85fr;
 align-items:center;
 min-height:448px;
}
.hero-left{
 max-width:560px;
 text-align:center;
 justify-self:start;
 padding-left:18px;
}
.hero h1{
 font-size:clamp(3rem,5.2vw,4.9rem);
 line-height:1.02;
 margin:0 0 10px;
 font-weight:700;
 text-shadow:0 3px 16px rgba(0,0,0,.22)
}
.hero-place{
 font-family:Georgia,"Times New Roman",serif;
 letter-spacing:.24em;
 text-transform:uppercase;
 font-size:1.08rem;
 color:#f3e1c2;
}
.hero-divider{
 display:flex;align-items:center;justify-content:center;gap:10px;
 color:#edd7aa;margin:19px 0 12px;font-size:1.55rem;
}
.hero-divider:before,.hero-divider:after{
 content:"";width:105px;height:1px;background:#dcc291;
}
.hero-quote{
 font-family:Georgia,"Times New Roman",serif;
 font-size:1.38rem;
 margin-top:4px;
}
.hero-desc{font-size:1.02rem;margin-top:10px}
.hero-btn{
 display:inline-flex;
 margin-top:18px;
 padding:11px 30px;
 border-radius:999px;
 background:var(--primary);
 color:#fff;
 text-decoration:none;
 font-family:Georgia,"Times New Roman",serif;
 font-size:1.03rem;
 border:1px solid rgba(255,255,255,.45);
 box-shadow:0 2px 0 rgba(255,255,255,.25) inset;
}
.hero-right-quote{
 justify-self:end;
 max-width:320px;
 text-align:center;
 font-family:Georgia,"Times New Roman",serif;
 font-size:1.4rem;
 line-height:1.45;
 color:#fff7e8;
 padding-right:8px;
 text-shadow:0 3px 14px rgba(0,0,0,.28);
}

.feature-strip{
 background:#fffdf8;
 border-bottom:1px solid var(--line);
}
.feature-row{display:grid;grid-template-columns:repeat(4,1fr)}
.feature-item{
 min-height:108px;
 padding:20px 22px;
 display:grid;
 grid-template-columns:58px 1fr;
 gap:14px;
 align-items:center;
}
.feature-item + .feature-item{border-left:1px solid var(--line)}
.feature-icon{
 width:52px;height:52px;display:grid;place-items:center;
 color:var(--primary);font-size:2.1rem;
}
.feature-item strong{
 display:block;
 font-family:Georgia,"Times New Roman",serif;
 font-size:1.1rem;
 color:#2e2b34;
 margin-bottom:2px;
}
.feature-item span{color:var(--muted);font-size:.9rem}

.section{padding:62px 0}
.section.alt{background:#fffaf4}
.about-grid{
 display:grid;
 grid-template-columns:1.15fr .85fr;
 gap:50px;
 align-items:center;
}
.about-copy{
 text-align:center;
 max-width:660px;
 justify-self:end;
}
.about-label{
 display:flex;
 align-items:center;
 justify-content:center;
 gap:14px;
 color:#a16e54;
 text-transform:uppercase;
 letter-spacing:.30em;
 font-size:.74rem;
 font-weight:700;
}
.about-label:before,.about-label:after{
 content:"";width:42px;height:1px;background:#b54e54;
}
.section h2{
 font-size:clamp(2.4rem,3.7vw,3.35rem);
 line-height:1.08;
 margin:18px 0 14px;
 font-weight:500;
}
.lead{
 font-size:1rem;
 color:#655c56;
 max-width:660px;
 margin:auto;
}
.about-button{
 display:inline-flex;
 margin-top:18px;
 padding:11px 28px;
 border-radius:999px;
 background:linear-gradient(180deg,#b11d26,#8c1720);
 color:#fff;
 text-decoration:none;
 font-family:Georgia,"Times New Roman",serif;
}
.about-art{
 position:relative;
 display:grid;place-items:center;
 min-height:470px;
}
.about-art:before{
 content:"";
 position:absolute;
 width:500px;height:500px;
 border-radius:50%;
 opacity:.7;
 background:
   radial-gradient(circle at center, transparent 0 39%, rgba(207,173,109,.10) 39% 40%, transparent 40% 52%, rgba(207,173,109,.07) 52% 53%, transparent 53% 64%, rgba(207,173,109,.05) 64% 65%, transparent 65%);
}
.about-img{
 position:relative;z-index:2;
 width:min(330px,86%);
 height:385px;
 object-fit:cover;
 object-position:center;
 border-radius:14px;
 border:7px solid #fff;
 box-shadow:0 18px 45px rgba(82,48,29,.13);
}

.history-grid{
 display:grid;grid-template-columns:.95fr 1.05fr;gap:46px;align-items:start;
}
.history-card{
 background:#fff;border:1px solid var(--line);border-radius:16px;padding:26px;
 box-shadow:0 10px 28px rgba(77,47,28,.05);
}
.timeline{position:relative;padding-left:28px}
.timeline:before{content:"";position:absolute;left:8px;top:8px;bottom:8px;width:1px;background:#d9b66f}
.timeline .item{position:relative;padding:0 0 22px 20px}
.timeline .item:before{
 content:"";position:absolute;left:-25px;top:8px;width:11px;height:11px;border-radius:50%;
 background:var(--primary);box-shadow:0 0 0 5px #f5e8cd
}

.event-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.event-card{
 background:#fff;border:1px solid var(--line);border-radius:16px;padding:22px;
}
.event-card.featured{
 grid-column:span 2;
 background:linear-gradient(135deg,#67151b,#8f2721);
 color:#fff;border-color:transparent
}
.event-card.featured h3{color:#f4ddb4}
.date-pill{
 display:inline-block;padding:5px 9px;border-radius:999px;
 background:#f2dfb7;color:#6c4b0b;font-size:.76rem;font-weight:800
}

.gallery-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:12px}
.gallery-grid figure{margin:0;grid-column:span 4;position:relative;overflow:hidden;border-radius:12px;background:#ddd;cursor:zoom-in}
.gallery-grid figure:nth-child(1),.gallery-grid figure:nth-child(5){grid-column:span 8}
.gallery-grid img{width:100%;height:280px;object-fit:cover;display:block;transition:.3s}
.gallery-grid figure:nth-child(1) img,.gallery-grid figure:nth-child(5) img{height:345px}
.gallery-grid figure:hover img{transform:scale(1.03)}
.gallery-grid figcaption{
 position:absolute;left:12px;right:12px;bottom:12px;
 background:rgba(49,28,18,.7);color:#fff;padding:8px 10px;border-radius:9px
}

.visit-card{background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 12px 30px rgba(72,43,27,.06);overflow:hidden}
.visit-grid{display:grid;grid-template-columns:1.1fr .9fr}
.visit-copy{padding:30px}
.visit-aside{padding:30px;background:#f7efe3;border-left:1px solid #e4d6c6}
.visit-fact{background:#fff;border:1px solid #e1d4c5;border-radius:10px;padding:12px 14px;margin-bottom:10px}
.visit-fact strong{display:block;color:var(--primary)}

.footer{background:#24120f;color:#eee;padding:44px 0 0}
.footgrid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:28px}
.footer h3,.footer h4{color:#f3deb8}
.footer p{color:#cdbbb2}
.copyright{border-top:1px solid #412b26;margin-top:26px;padding:14px;text-align:center;color:#b9a7a0}

.lightbox{position:fixed;inset:0;z-index:999;background:rgba(15,9,7,.94);display:none;align-items:center;justify-content:center;padding:20px}
.lightbox.open{display:flex}
.lightbox img{max-width:92vw;max-height:86vh;border-radius:12px}
.lightbox button{position:absolute;top:18px;right:20px;width:42px;height:42px;border-radius:50%;border:0;background:#fff;font-size:22px}

@media(max-width:900px){
 .menu-btn{display:block}
 .navlinks{
   display:none;position:absolute;top:72px;left:4%;right:4%;
   background:#fff;padding:18px;border-radius:14px;
   box-shadow:0 18px 50px rgba(0,0,0,.12);flex-direction:column
 }
 .navlinks.open{display:flex}
 .hero-inner,.about-grid,.history-grid,.visit-grid,.feature-row,.event-grid,.footgrid{grid-template-columns:1fr}
 .hero-inner{min-height:560px;padding:48px 0}
 .hero-left,.hero-right-quote{justify-self:center;text-align:center}
 .hero-right-quote{margin-top:24px;padding-right:0}
 .feature-item+.feature-item{border-left:0;border-top:1px solid var(--line)}
 .event-card.featured{grid-column:span 1}
 .visit-aside{border-left:0;border-top:1px solid #e4d6c6}
 .gallery-grid figure,.gallery-grid figure:nth-child(1),.gallery-grid figure:nth-child(5){grid-column:span 12}
 .gallery-grid img,.gallery-grid figure:nth-child(1) img,.gallery-grid figure:nth-child(5) img{height:250px}
 .about-art:before{width:350px;height:350px}
 .about-img{height:360px}
}




/* v1.9 balanced approved hero */
.hero-reference{
  background:#2a160f;
  width:100%;
  overflow:hidden;
  border-bottom:0;
}
.hero-reference img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  object-position:center;
}
@media(min-width:901px){
  .hero-reference img{
    max-height:560px;
  }
}
@media(max-width:900px){
  .hero-reference{
    min-height:420px;
  }
  .hero-reference img{
    width:auto;
    max-width:none;
    height:420px;
    min-width:100%;
    object-fit:cover;
    object-position:center;
    position:relative;
    left:50%;
    transform:translateX(-50%);
  }
}


/* =========================================================
   v1.9.1 Premium Typography + Navigation Fix
   ========================================================= */

:root{
  --font-display:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:"Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-devanagari:"Noto Serif Devanagari", "Nirmala UI", "Mangal", serif;
  --header-height:78px;
}

/* Prevent anchored section headings from hiding behind sticky navigation */
html{
  scroll-padding-top:calc(var(--header-height) + 16px);
}
section[id]{
  scroll-margin-top:calc(var(--header-height) + 16px);
}

body{
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

h1,h2,h3,h4,h5,h6,.brand{
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:-.015em;
}

.lang-hi,
.hero h1,
.hero-quote,
.hero-desc,
.hero-right-quote{
  font-family:var(--font-devanagari);
}

/* Stronger sticky header behavior */
.topbar{
  position:sticky !important;
  top:0 !important;
  z-index:1000 !important;
  width:100%;
  background:rgba(255,250,244,.98);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 5px 18px rgba(54,31,22,.06);
}
.nav{
  min-height:var(--header-height);
}
.navlinks a{
  font-family:var(--font-body);
  font-size:.96rem;
  font-weight:650;
  letter-spacing:.01em;
}
.navlinks a.active{
  color:var(--primary);
}
.navlinks a.active:after{
  right:0 !important;
}

/* Site title */
.brand{
  font-size:1.48rem;
  font-weight:650;
  letter-spacing:-.02em;
}

/* Hero */
.hero h1{
  font-size:clamp(3rem,5vw,4.8rem);
  font-weight:700;
  letter-spacing:-.025em;
}
.hero-place{
  font-family:var(--font-body);
  font-size:.98rem;
  font-weight:650;
  letter-spacing:.28em;
}
.hero-quote{
  font-size:1.4rem;
  font-weight:600;
}
.hero-desc{
  font-size:1.08rem;
  font-weight:500;
  line-height:1.65;
}
.hero-btn{
  font-family:var(--font-body);
  font-size:.96rem;
  font-weight:700;
  letter-spacing:.01em;
}

/* Feature strip */
.feature-item strong{
  font-family:var(--font-display);
  font-size:1.28rem;
  font-weight:650;
  line-height:1.1;
}
.feature-item span{
  font-family:var(--font-body);
  font-size:.88rem;
  line-height:1.45;
}

/* Small section labels */
.about-label,
.eyebrow{
  font-family:var(--font-body);
  font-size:.73rem;
  font-weight:700;
  letter-spacing:.24em;
}

/* Main section titles */
.section h2,
#events h2,
#gallery h2{
  font-family:var(--font-display);
  font-size:clamp(2.35rem,3.8vw,3.35rem);
  line-height:1.03;
  font-weight:550;
  letter-spacing:-.025em;
}

/* Body copy */
.lead,
.about-copy,
.history-card,
.event-card,
.visit-card{
  font-family:var(--font-body);
}
.lead{
  font-size:1rem;
  line-height:1.78;
}

/* Festival cards */
.event-card h3{
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:650;
  line-height:1.15;
  margin:.55em 0 .45em;
}
.event-card p{
  font-size:.96rem;
  line-height:1.68;
}
.date-pill{
  font-family:var(--font-body);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.02em;
}

/* Timeline */
.timeline .item h3{
  font-family:var(--font-display);
  font-size:1.38rem;
  font-weight:650;
  margin:0 0 6px;
}

/* Visit cards */
.visit-fact strong{
  font-family:var(--font-body);
  font-size:.8rem;
  font-weight:750;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* Footer */
.footer h3,.footer h4{
  font-family:var(--font-display);
  font-weight:600;
}
.footer p,.copyright{
  font-family:var(--font-body);
}

/* Mobile navigation remains above page content when scrolling */
@media(max-width:900px){
  :root{--header-height:72px}
  .topbar{position:sticky !important;top:0 !important}
  .navlinks{
    position:absolute !important;
    top:calc(var(--header-height) - 2px) !important;
    z-index:1100 !important;
  }
  .brand{font-size:1.22rem}
  .section h2,#events h2,#gallery h2{font-size:2.35rem}
}


/* v1.9.3 Gallery page */
.gallery-grid{
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.gallery-grid figure{grid-column:span 4}
.gallery-grid a{display:block;height:100%}
.gallery-grid img{
  width:100%;
  height:290px;
  object-fit:cover;
  display:block;
}
.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(5),
.gallery-grid figure:nth-child(9){grid-column:span 8}
.gallery-grid figure:nth-child(1) img,
.gallery-grid figure:nth-child(5) img,
.gallery-grid figure:nth-child(9) img{height:360px}

.gallery-page{
  padding:70px 0 90px;
  background:var(--cream);
  min-height:75vh;
}
.gallery-page-head{
  text-align:center;
  margin:0 auto 34px;
}
.gallery-page-head h1{
  font-family:var(--font-display);
  font-size:clamp(2.7rem,4vw,4rem);
  font-weight:550;
  margin:14px 0 0;
  letter-spacing:-.025em;
}
.gallery-page-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.gallery-page-grid figure{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:14px;
  background:#ddd;
  cursor:zoom-in;
}
.gallery-page-grid img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
  transition:transform .3s ease;
}
.gallery-page-grid figure:hover img{transform:scale(1.035)}
.gallery-page-grid figcaption{
  position:absolute;
  left:10px;right:10px;bottom:10px;
  background:rgba(49,28,18,.68);
  color:#fff;
  padding:8px 10px;
  border-radius:9px;
  font-size:.86rem;
}
.gallery-empty{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:30px;
  text-align:center;
  color:var(--muted);
}
@media(max-width:1000px){.gallery-page-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:700px){.gallery-page-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.gallery-page-grid{grid-template-columns:1fr}}


/* =========================================================
   v1.9.4 Active Menu State Fix
   ========================================================= */
.navlinks a{
  color:#3f3531;
}
.navlinks a:after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:1px;
  height:2px;
  background:var(--primary);
  transition:right .2s ease;
}
.navlinks a:hover{
  color:var(--primary);
}
.navlinks a:hover:after{
  right:0;
}
.navlinks a.active{
  color:var(--primary) !important;
}
.navlinks a.active:after{
  right:0 !important;
}


/* v1.9.5 Copyright-only footer */
.copyright-footer{
  background:#2a100d;
  color:rgba(255,255,255,.82);
  border-top:1px solid rgba(255,255,255,.08);
  padding:18px 0;
  text-align:center;
}
.copyright-footer p{
  margin:0;
  font-family:var(--font-body);
  font-size:.88rem;
  line-height:1.5;
  letter-spacing:.01em;
}


/* =========================================================
   v1.9.7 Editable Hero Content
   ========================================================= */
.editable-hero{
  min-height:455px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.editable-hero:before{
  display:none;
}
.editable-hero .hero-inner{
  min-height:455px;
}
.editable-hero .hero-left{
  max-width:560px;
}
.editable-hero .hero-right-quote{
  background:rgba(55,30,20,.12);
  padding:14px 18px;
  border-radius:10px;
  backdrop-filter:blur(1px);
}
@media(max-width:900px){
  .editable-hero{
    min-height:560px;
    background-position:center;
  }
  .editable-hero .hero-inner{
    min-height:560px;
  }
}


/* =========================================================
   v1.9.9 Approved Clean Hero
   ========================================================= */
.editable-hero{
  min-height:520px;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.editable-hero .hero-inner{
  min-height:520px;
}
.editable-hero .hero-left{
  max-width:560px;
}
@media(max-width:900px){
  .editable-hero{
    min-height:560px;
    background-position:center center;
  }
  .editable-hero .hero-inner{
    min-height:560px;
  }
}


/* =========================================================
   v1.10 Reference Homepage Layout
   ========================================================= */

.home-reference-content{
  background:linear-gradient(180deg,#fffdf9,#fbf6ed);
  padding:34px 0 26px;
  border-top:1px solid #eee3d8;
}
.home-reference-grid{
  display:grid;
  grid-template-columns:1fr 1.18fr;
  gap:56px;
  align-items:start;
}

.ref-label{
  display:inline-block;
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.26em;
  font-size:.70rem;
  font-weight:700;
  color:#5d5a5c;
  position:relative;
  padding-bottom:12px;
  margin-bottom:10px;
}
.ref-label:after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:42px;
  height:2px;
  background:var(--primary);
}

.home-about-panel{
  min-height:275px;
  position:relative;
  padding:8px 28px 18px 0;
  overflow:hidden;
}
.home-about-panel h2{
  font-family:var(--font-display);
  color:var(--primary);
  font-size:2.25rem;
  font-weight:650;
  line-height:1.05;
  margin:10px 0 12px;
}
.home-about-copy{
  position:relative;
  z-index:2;
  max-width:590px;
  color:#5c5860;
  font-size:.97rem;
  line-height:1.6;
}
.home-about-copy p{margin-top:0}
.ref-pill-btn{
  position:relative;
  z-index:2;
  display:inline-flex;
  gap:22px;
  align-items:center;
  margin-top:8px;
  padding:10px 22px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:650;
  box-shadow:0 6px 16px rgba(126,23,29,.14);
}
.mandala-mark{
  position:absolute;
  right:25px;
  bottom:-75px;
  font-size:250px;
  line-height:1;
  color:rgba(201,164,103,.10);
  font-family:serif;
  transform:rotate(12deg);
  pointer-events:none;
}

.home-events-panel{
  padding:8px 0 12px;
}
.compact-event-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.compact-event-card{
  position:relative;
  display:grid;
  grid-template-columns:118px 1fr;
  min-height:155px;
  background:#fff;
  border:1px solid #eee4db;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 7px 18px rgba(65,42,28,.04);
}
.compact-event-img{
  width:100%;
  height:100%;
  min-height:155px;
  object-fit:cover;
}
.compact-event-placeholder{
  display:grid;
  place-items:center;
  min-height:155px;
  background:linear-gradient(145deg,#f8ead3,#efe0c9);
  color:var(--primary);
  font-size:2.1rem;
}
.compact-event-body{
  padding:15px 38px 14px 15px;
}
.compact-event-body h3{
  color:#26334a;
  font-size:1.18rem;
  margin:0 0 6px;
  font-weight:650;
}
.compact-event-date{
  color:var(--primary);
  font-size:.78rem;
  font-weight:700;
  margin-bottom:8px;
}
.compact-event-body p{
  color:#5e6470;
  font-size:.84rem;
  line-height:1.45;
  margin:0;
}
.compact-event-arrow{
  position:absolute;
  right:12px;
  bottom:12px;
  width:34px;
  height:34px;
  border:1px solid var(--primary);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--primary);
}
.events-footer-link{
  text-align:right;
  margin-top:12px;
}
.events-footer-link a{
  color:var(--primary);
  text-decoration:none;
  font-family:var(--font-display);
  font-weight:650;
}

.compact-history{
  padding-top:60px;
  padding-bottom:60px;
}

.reference-gallery-section{
  background:#fffaf4;
  padding:28px 0 68px;
}
.reference-gallery-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.gallery-outline-btn{
  display:inline-flex;
  gap:14px;
  align-items:center;
  padding:9px 18px;
  border:1px solid var(--primary);
  border-radius:999px;
  color:var(--primary);
  text-decoration:none;
  font-family:var(--font-display);
  font-weight:650;
  background:#fff;
}
.visit-section-ref{
  padding-top:68px;
}

@media(max-width:980px){
  .home-reference-grid{
    grid-template-columns:1fr;
    gap:34px;
  }
  .compact-event-grid{
    grid-template-columns:1fr;
  }
  .home-about-panel{
    padding-right:0;
  }
}
@media(max-width:600px){
  .compact-event-card{
    grid-template-columns:92px 1fr;
  }
  .compact-event-img,
  .compact-event-placeholder{
    min-height:140px;
  }
  .reference-gallery-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .home-about-panel h2{
    font-size:1.9rem;
  }
}


/* =========================================================
   v1.10.1 Professional Hero Alignment
   Same hero image/content — layout only
   ========================================================= */

.editable-hero{
  position:relative;
  min-height:520px;
  background-position:center center;
  overflow:hidden;
}

/* Balanced darkening only where text sits; shrine stays clear */
.editable-hero::before{
  content:"";
  display:block !important;
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(
      90deg,
      rgba(31,17,11,.72) 0%,
      rgba(38,20,12,.57) 27%,
      rgba(25,15,10,.10) 47%,
      rgba(25,15,10,.04) 64%,
      rgba(31,18,14,.44) 100%
    );
}

.editable-hero .hero-inner{
  position:relative;
  z-index:1;
  min-height:520px;
  width:min(1280px,94%);
  margin:0 auto;
  display:block;
}

/* LEFT CONTENT */
.editable-hero .hero-left{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:min(500px,40vw);
  max-width:500px;
  padding:24px 26px;
  text-align:center;
}

.editable-hero .hero-left h1{
  margin:0 0 12px;
  font-family:var(--font-devanagari);
  font-size:clamp(2.5rem,3.5vw,3.65rem);
  line-height:1.08;
  font-weight:700;
  letter-spacing:-.025em;
  color:#fff;
  text-wrap:balance;
  text-shadow:0 3px 18px rgba(0,0,0,.32);
}

.editable-hero .hero-place{
  margin-top:6px;
  font-size:.94rem;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.30em;
  color:#f3dfb4;
  text-transform:uppercase;
}

.editable-hero .hero-divider{
  margin:20px auto 14px;
  max-width:285px;
  font-size:1.42rem;
}

.editable-hero .hero-divider::before,
.editable-hero .hero-divider::after{
  width:92px;
}

.editable-hero .hero-quote{
  margin:0;
  font-size:1.24rem;
  line-height:1.5;
  font-weight:600;
  color:#fffaf0;
}

.editable-hero .hero-desc{
  max-width:455px;
  margin:14px auto 0;
  font-size:.96rem;
  line-height:1.7;
  font-weight:500;
  color:rgba(255,255,255,.94);
  text-wrap:balance;
}

.editable-hero .hero-btn{
  margin-top:24px;
  min-width:168px;
  padding:11px 24px;
  justify-content:center;
  font-size:.92rem;
  box-shadow:0 8px 24px rgba(78,9,15,.22);
}

/* RIGHT QUOTE */
.editable-hero .hero-right-quote{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:min(300px,23vw);
  max-width:300px;
  margin:0;
  padding:18px 20px;
  border-radius:12px;
  text-align:center;
  font-family:var(--font-devanagari);
  font-size:1.12rem;
  line-height:1.7;
  font-weight:600;
  color:#fff8ec;
  background:rgba(70,40,28,.24);
  border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(2px);
  -webkit-backdrop-filter:blur(2px);
  text-shadow:0 2px 10px rgba(0,0,0,.30);
}

/* Keep the centre shrine visually unobstructed */
@media(min-width:1200px){
  .editable-hero .hero-left{
    width:470px;
  }
  .editable-hero .hero-left h1{
    font-size:3.2rem;
  }
}

/* Tablet */
@media(max-width:1050px) and (min-width:901px){
  .editable-hero .hero-left{
    width:390px;
    padding-left:10px;
  }
  .editable-hero .hero-left h1{
    font-size:2.55rem;
  }
  .editable-hero .hero-right-quote{
    width:235px;
    font-size:1rem;
  }
}

/* Mobile: stack cleanly over photo */
@media(max-width:900px){
  .editable-hero{
    min-height:650px;
    background-position:center center;
  }

  .editable-hero::before{
    background:rgba(27,15,10,.58);
  }

  .editable-hero .hero-inner{
    min-height:650px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:24px;
    padding:48px 0;
  }

  .editable-hero .hero-left,
  .editable-hero .hero-right-quote{
    position:relative;
    inset:auto;
    transform:none;
    width:min(92%,520px);
    max-width:520px;
  }

  .editable-hero .hero-left{
    padding:18px;
  }

  .editable-hero .hero-left h1{
    font-size:clamp(2.25rem,9vw,3rem);
  }

  .editable-hero .hero-right-quote{
    font-size:1rem;
    padding:14px 16px;
  }
}

@media(max-width:520px){
  .editable-hero .hero-place{
    letter-spacing:.18em;
    font-size:.82rem;
  }

  .editable-hero .hero-divider::before,
  .editable-hero .hero-divider::after{
    width:62px;
  }

  .editable-hero .hero-desc{
    font-size:.91rem;
  }
}


/* =========================================================
   v1.10.2 Festival Section Refinement
   ========================================================= */

.home-events-panel{
  min-height:275px;
  display:flex;
  flex-direction:column;
}

.festival-card-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:4px;
}

.festival-pro-card{
  position:relative;
  display:grid;
  grid-template-columns:125px 1fr;
  min-height:164px;
  background:#fff;
  border:1px solid #eadfd4;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(70,42,28,.05);
  transition:transform .2s ease, box-shadow .2s ease;
}

.festival-pro-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(70,42,28,.08);
}

.festival-media{
  min-height:164px;
  background:#f4e7d1;
}

.festival-media img{
  width:100%;
  height:100%;
  min-height:164px;
  object-fit:cover;
  display:block;
}

.festival-media-placeholder{
  width:100%;
  height:100%;
  min-height:164px;
  display:grid;
  place-items:center;
  color:var(--primary);
  font-size:2rem;
  background:linear-gradient(145deg,#f7ead6,#efe0c7);
}

.festival-pro-body{
  padding:18px 44px 16px 18px;
}

.festival-pro-body h3{
  margin:0 0 6px;
  font-family:var(--font-display);
  font-size:1.23rem;
  font-weight:650;
  line-height:1.15;
  color:#253248;
}

.festival-pro-date{
  margin-bottom:8px;
  color:var(--primary);
  font-family:var(--font-body);
  font-size:.78rem;
  font-weight:750;
  letter-spacing:.02em;
}

.festival-pro-body p{
  margin:0;
  color:#5d6370;
  font-family:var(--font-body);
  font-size:.86rem;
  line-height:1.5;
}

.festival-pro-arrow{
  position:absolute;
  right:14px;
  bottom:14px;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid var(--primary);
  border-radius:50%;
  color:var(--primary);
  background:#fff;
  font-size:1rem;
  font-weight:700;
}

.festival-empty-card{
  display:grid;
  grid-template-columns:120px 1fr;
  align-items:stretch;
  width:100%;
  min-height:170px;
  margin-top:4px;
  background:#fff;
  border:1px solid #eadfd4;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(70,42,28,.05);
}

.festival-empty-icon{
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#f7ead6,#efe0c7);
  color:var(--primary);
  font-size:2.15rem;
}

.festival-empty-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px 26px;
}

.festival-empty-content h3{
  margin:0 0 8px;
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:650;
  line-height:1.15;
  color:#253248;
}

.festival-empty-content p{
  margin:0;
  max-width:520px;
  color:#5d6370;
  font-family:var(--font-body);
  font-size:.9rem;
  line-height:1.58;
}

.events-footer-link{
  margin-top:auto;
  padding-top:14px;
  text-align:right;
}

.events-footer-link a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--primary);
  text-decoration:none;
  font-family:var(--font-display);
  font-size:.98rem;
  font-weight:650;
}

.events-footer-link a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

@media(max-width:1180px){
  .festival-card-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:700px){
  .festival-pro-card{
    grid-template-columns:100px 1fr;
  }

  .festival-media,
  .festival-media img,
  .festival-media-placeholder{
    min-height:150px;
  }

  .festival-empty-card{
    grid-template-columns:90px 1fr;
  }
}

@media(max-width:520px){
  .festival-pro-card,
  .festival-empty-card{
    grid-template-columns:1fr;
  }

  .festival-media,
  .festival-media img,
  .festival-media-placeholder{
    min-height:180px;
    height:180px;
  }

  .festival-empty-icon{
    min-height:110px;
  }

  .events-footer-link{
    text-align:left;
  }
}


/* =========================================================
   v1.10.3 Homepage Gallery + Visit Heading Refinement
   ========================================================= */

/* Homepage gallery: exactly four equal cards in one row */
.reference-gallery-section .gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.reference-gallery-section .gallery-grid figure,
.reference-gallery-section .gallery-grid figure:nth-child(1),
.reference-gallery-section .gallery-grid figure:nth-child(5),
.reference-gallery-section .gallery-grid figure:nth-child(9){
  grid-column:span 1;
  margin:0;
}

.reference-gallery-section .gallery-grid img,
.reference-gallery-section .gallery-grid figure:nth-child(1) img,
.reference-gallery-section .gallery-grid figure:nth-child(5) img,
.reference-gallery-section .gallery-grid figure:nth-child(9) img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  border-radius:12px;
}

/* Visit section: keep spacing clean after removing heading */
.visit-section-ref .visit-copy .about-label{
  margin-bottom:12px;
}

.visit-section-ref .visit-copy .lead{
  margin-top:0;
}

/* Responsive gallery */
@media(max-width:1000px){
  .reference-gallery-section .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .reference-gallery-section .gallery-grid{
    grid-template-columns:1fr;
  }

  .reference-gallery-section .gallery-grid img,
  .reference-gallery-section .gallery-grid figure:nth-child(1) img,
  .reference-gallery-section .gallery-grid figure:nth-child(5) img,
  .reference-gallery-section .gallery-grid figure:nth-child(9) img{
    height:250px;
  }
}


/* =========================================================
   v1.10.6 Separate About / History / Events Sections
   ========================================================= */

.standalone-about-panel{
  max-width:760px;
  min-height:auto;
  padding:18px 0 30px;
}

.events-after-history{
  background:#fffdf9;
  padding-top:58px;
  padding-bottom:58px;
  border-top:1px solid #eee4da;
  border-bottom:1px solid #eee4da;
}

.events-after-history .home-events-panel{
  min-height:auto;
  width:100%;
}

.events-after-history .ref-label{
  margin-bottom:18px;
}

.events-after-history .festival-card-grid{
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.events-after-history .events-footer-link{
  margin-top:16px;
  padding-top:0;
}

@media(max-width:900px){
  .events-after-history .festival-card-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   v1.10.7 About Section Professional Layout
   ========================================================= */

#about.home-reference-content{
  padding:54px 0 50px;
}

.standalone-about-panel{
  max-width:none;
  width:100%;
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(260px, .55fr);
  gap:72px;
  align-items:center;
  padding:0;
}

.about-content-column{
  max-width:780px;
}

.standalone-about-panel .ref-label{
  margin-bottom:20px;
}

.standalone-about-panel h2{
  margin:0 0 14px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(2rem,2.6vw,2.65rem);
  line-height:1.1;
}

.standalone-about-panel .home-about-copy{
  max-width:760px;
  color:#4f5662;
  font-size:1rem;
  line-height:1.62;
}

.standalone-about-panel .home-about-copy p{
  margin:0 0 15px;
}

.standalone-about-panel .home-about-copy p:last-child{
  margin-bottom:0;
}

.about-ornament-column{
  min-height:230px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-left:1px solid rgba(138,29,36,.10);
}

.about-ornament-ring{
  width:180px;
  height:180px;
  border:1px solid rgba(138,29,36,.18);
  border-radius:50%;
  display:grid;
  place-items:center;
  position:relative;
  background:radial-gradient(circle,rgba(138,29,36,.035) 0 48%,transparent 49%);
}

.about-ornament-ring::before,
.about-ornament-ring::after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(138,29,36,.10);
}

.about-ornament-ring::before{
  inset:15px;
}

.about-ornament-ring::after{
  inset:31px;
}

.about-ornament-ring span{
  color:rgba(138,29,36,.42);
  font-family:var(--font-display);
  font-size:3.2rem;
  line-height:1;
}

.standalone-about-panel > .mandala-mark{
  display:none;
}

@media(max-width:900px){
  .standalone-about-panel{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-ornament-column{
    display:none;
  }

  .about-content-column{
    max-width:none;
  }
}

@media(max-width:600px){
  #about.home-reference-content{
    padding:40px 0 38px;
  }

  .standalone-about-panel h2{
    font-size:1.9rem;
  }

  .standalone-about-panel .home-about-copy{
    font-size:.95rem;
    line-height:1.58;
  }
}


/* =========================================================
   v1.10.8 About Mahen Heritage Page
   ========================================================= */

.about-discover-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:1.02rem;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid rgba(138,29,36,.28);
  padding-bottom:4px;
}

.about-discover-link:hover{
  border-bottom-color:var(--primary);
}

.heritage-hero{
  padding:76px 0 66px;
  background:
    radial-gradient(circle at 82% 30%,rgba(138,29,36,.07),transparent 27%),
    linear-gradient(180deg,#fffaf3,#f8efe4);
  border-bottom:1px solid #eadfd2;
}

.heritage-hero-inner{
  max-width:900px;
}

.heritage-kicker{
  margin-bottom:18px;
  color:var(--primary);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.heritage-hero h1{
  margin:0 0 10px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(2.7rem,5vw,4.8rem);
  line-height:.98;
}

.heritage-hero p{
  margin:0;
  color:#5a5f68;
  font-family:var(--font-display);
  font-size:clamp(1.25rem,2vw,1.7rem);
}

.heritage-page{
  padding:62px 0 72px;
  background:#fffdf9;
}

.heritage-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:72px;
  align-items:start;
}

.heritage-article{
  max-width:790px;
}

.heritage-article > p:first-child{
  font-size:1.12rem;
  line-height:1.7;
}

.heritage-article p{
  margin:0 0 18px;
  color:#515863;
  font-size:1rem;
  line-height:1.72;
}

.heritage-article h2{
  position:relative;
  margin:52px 0 18px;
  padding-top:8px;
  color:#263248;
  font-family:var(--font-display);
  font-size:clamp(1.8rem,2.6vw,2.35rem);
  line-height:1.08;
}

.heritage-article h2::before{
  content:"";
  position:absolute;
  left:0;
  top:-8px;
  width:44px;
  height:2px;
  background:var(--primary);
}

.heritage-note{
  margin:24px 0 30px;
  padding:18px 20px;
  border-left:3px solid var(--primary);
  background:#f8efe5;
  color:#5a5960;
  font-size:.92rem;
  line-height:1.6;
}

.heritage-closing{
  margin-top:36px;
  padding:30px 32px;
  border:1px solid #ead9c8;
  border-radius:16px;
  background:linear-gradient(145deg,#fbf2e8,#fffdf9);
}

.heritage-closing span{
  display:block;
  margin-bottom:8px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:1.7rem;
  font-weight:700;
}

.heritage-closing strong{
  color:#263248;
  font-family:var(--font-display);
  font-size:1.25rem;
  line-height:1.4;
}

.heritage-sidebar{
  position:sticky;
  top:110px;
  display:grid;
  gap:18px;
}

.heritage-side-card{
  padding:24px;
  border:1px solid #eadfd4;
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 28px rgba(70,42,28,.045);
}

.heritage-side-icon{
  width:54px;
  height:54px;
  margin-bottom:16px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f7ead8;
  color:var(--primary);
  font-size:1.55rem;
}

.heritage-side-card h3{
  margin:0 0 10px;
  color:#263248;
  font-family:var(--font-display);
  font-size:1.35rem;
}

.heritage-side-card p{
  margin:0;
  color:#676b72;
  font-size:.88rem;
  line-height:1.55;
}

.heritage-links a{
  display:block;
  padding:10px 0;
  color:var(--primary);
  text-decoration:none;
  border-bottom:1px solid #eee4da;
  font-size:.9rem;
  font-weight:600;
}

.heritage-links a:last-child{
  border-bottom:0;
}

@media(max-width:900px){
  .heritage-layout{
    grid-template-columns:1fr;
    gap:38px;
  }

  .heritage-sidebar{
    position:static;
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:620px){
  .heritage-hero{
    padding:52px 0 44px;
  }

  .heritage-page{
    padding:42px 0 54px;
  }

  .heritage-sidebar{
    grid-template-columns:1fr;
  }

  .heritage-article h2{
    margin-top:42px;
  }
}


/* =========================================================
   v1.10.9 Homepage About Image Layout
   ========================================================= */

.about-feature-section{
  padding:54px 0;
  background:
    radial-gradient(circle at 84% 44%,rgba(201,162,96,.07),transparent 26%),
    linear-gradient(180deg,#fffdf9,#fbf6ee);
}

.about-feature-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);
  gap:62px;
  align-items:center;
}

.about-feature-copy{
  position:relative;
  min-width:0;
  padding:12px 0;
}

.about-feature-copy .ref-label{
  margin-bottom:24px;
}

.about-feature-copy h2{
  margin:0 0 18px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(2.35rem,3.5vw,3.45rem);
  line-height:1.03;
  letter-spacing:-.015em;
}

.about-feature-copy .home-about-copy{
  position:relative;
  z-index:2;
  max-width:760px;
  color:#4f5661;
  font-size:1rem;
  line-height:1.67;
}

.about-feature-copy .home-about-copy p{
  margin:0 0 16px;
}

.about-feature-button{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
  padding:12px 20px;
  border-radius:9px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-size:.92rem;
  font-weight:700;
  box-shadow:0 8px 20px rgba(138,29,36,.12);
}

.about-feature-button:hover{
  transform:translateY(-1px);
}

.about-feature-watermark{
  position:absolute;
  right:12px;
  bottom:-18px;
  z-index:1;
  color:rgba(138,29,36,.045);
  font-family:var(--font-display);
  font-size:10rem;
  line-height:1;
  pointer-events:none;
  user-select:none;
}

.about-feature-image-wrap{
  position:relative;
  overflow:hidden;
  height:500px;
  border-radius:18px;
  background:#eee2d7;
  box-shadow:0 18px 42px rgba(59,35,23,.13);
}

.about-feature-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.35);
  border-radius:18px;
  pointer-events:none;
}

.about-feature-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center 48%;
}

@media(max-width:1000px){
  .about-feature-grid{
    grid-template-columns:1fr 380px;
    gap:36px;
  }

  .about-feature-image-wrap{
    height:450px;
  }
}

@media(max-width:820px){
  .about-feature-grid{
    grid-template-columns:1fr;
  }

  .about-feature-copy{
    order:1;
  }

  .about-feature-image-wrap{
    order:2;
    width:100%;
    max-width:560px;
    height:500px;
  }

  .about-feature-watermark{
    display:none;
  }
}

@media(max-width:560px){
  .about-feature-section{
    padding:40px 0;
  }

  .about-feature-copy h2{
    font-size:2.15rem;
  }

  .about-feature-image-wrap{
    height:430px;
    border-radius:14px;
  }

  .about-feature-image-wrap::after{
    border-radius:14px;
  }
}


/* =========================================================
   v1.10.10 Festival Showcase Redesign
   ========================================================= */

.festival-showcase-section{
  padding:52px 0 56px;
  background:linear-gradient(180deg,#fffdf9,#fbf7f0);
}

.festival-showcase-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:24px;
}

.festival-showcase-head .ref-label{
  margin-bottom:14px;
}

.festival-showcase-head h2{
  margin:0 0 7px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(2rem,3vw,2.7rem);
  line-height:1.05;
}

.festival-showcase-head p{
  margin:0;
  max-width:700px;
  color:#616774;
  font-size:.95rem;
  line-height:1.5;
}

.festival-all-btn{
  flex:0 0 auto;
  margin-bottom:4px;
}

.festival-showcase-grid{
  display:grid;
  gap:18px;
}

.festival-showcase-grid.three-cards{
  grid-template-columns:repeat(3,1fr);
}

.festival-showcase-grid.two-cards{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.festival-showcase-grid.one-card{
  grid-template-columns:minmax(0,520px);
}

.festival-showcase-card{
  overflow:hidden;
  background:#fff;
  border:1px solid #eadfd4;
  border-radius:13px;
  box-shadow:0 9px 24px rgba(70,42,28,.045);
}

.festival-showcase-media{
  height:190px;
  overflow:hidden;
  background:linear-gradient(145deg,#f3e4ce,#ebd8b9);
}

.festival-showcase-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.festival-showcase-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  color:rgba(138,29,36,.58);
  font-size:2.5rem;
}

.festival-showcase-body{
  padding:17px 20px 20px;
}

.festival-showcase-date{
  margin-bottom:8px;
  color:#777b85;
  font-size:.78rem;
  font-weight:600;
}

.festival-showcase-date span{
  color:var(--primary);
  margin-right:5px;
}

.festival-showcase-body h3{
  margin:0 0 7px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:1.4rem;
  line-height:1.1;
}

.festival-showcase-body p{
  margin:0;
  color:#626875;
  font-size:.86rem;
  line-height:1.5;
}

.festival-minimal-empty{
  display:flex;
  align-items:center;
  gap:18px;
  min-height:92px;
  padding:16px 20px;
  border:1px solid #eadfd4;
  border-radius:12px;
  background:#fff;
}

.festival-minimal-symbol{
  flex:0 0 62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#f5e7d2;
  color:var(--primary);
  font-size:1.7rem;
}

.festival-minimal-empty strong{
  display:block;
  margin-bottom:4px;
  color:#263248;
  font-family:var(--font-display);
  font-size:1.15rem;
}

.festival-minimal-empty span{
  display:block;
  color:#6a6f78;
  font-size:.84rem;
}

.events-page-section{
  padding:54px 0 70px;
  background:#fffdf9;
}

.events-page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.events-page-empty{
  max-width:760px;
}

@media(max-width:1000px){
  .festival-showcase-grid.three-cards,
  .events-page-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:720px){
  .festival-showcase-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .festival-all-btn{
    margin-top:4px;
  }

  .festival-showcase-grid.three-cards,
  .festival-showcase-grid.two-cards,
  .events-page-grid{
    grid-template-columns:1fr;
  }

  .festival-showcase-media{
    height:210px;
  }
}


/* v1.10.11 Events heading cleanup */
.festival-showcase-head{
  align-items:center;
  margin-bottom:18px;
}
.festival-showcase-head .ref-label{
  margin-bottom:0;
}


/* =========================================================
   v1.10.12 Editable Round About + History Images
   ========================================================= */

.about-feature-grid{
  grid-template-columns:minmax(0,1fr) 340px;
  gap:54px;
  align-items:center;
}

.about-feature-image-wrap{
  width:300px;
  height:300px;
  justify-self:center;
  border-radius:50%;
  overflow:hidden;
  background:#efe3d6;
  box-shadow:0 16px 38px rgba(59,35,23,.13);
  border:7px solid rgba(255,255,255,.82);
}

.about-feature-image-wrap::after{
  border-radius:50%;
  border:1px solid rgba(138,29,36,.10);
}

.about-feature-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:50%;
}

/* History mirrors the About visual language */
.history-feature-section{
  padding:54px 0 58px;
}

.history-feature-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:54px;
  align-items:center;
}

.history-feature-copy{
  min-width:0;
  max-width:790px;
}

.history-main-copy{
  color:#525965;
  font-size:1rem;
  line-height:1.68;
}

.history-main-copy p{
  margin:0 0 16px;
}

.history-feature-image-wrap{
  width:300px;
  height:300px;
  justify-self:center;
  overflow:hidden;
  border-radius:50%;
  background:#efe3d6;
  box-shadow:0 16px 38px rgba(59,35,23,.12);
  border:7px solid rgba(255,255,255,.86);
}

.history-feature-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:50%;
}

.history-timeline-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:38px;
}

.history-point{
  padding:20px 22px;
  background:rgba(255,255,255,.72);
  border:1px solid #eadfd4;
  border-radius:12px;
}

.history-point h3{
  margin:0 0 8px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:1.22rem;
}

.history-point p{
  margin:0;
  color:#666b74;
  font-size:.86rem;
  line-height:1.52;
}

@media(max-width:900px){
  .about-feature-grid,
  .history-feature-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-feature-image-wrap,
  .history-feature-image-wrap{
    width:260px;
    height:260px;
    justify-self:start;
  }

  .history-timeline-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .about-feature-image-wrap,
  .history-feature-image-wrap{
    width:220px;
    height:220px;
    justify-self:center;
    border-width:5px;
  }
}


/* =========================================================
   v1.10.13 Pauhari Maharaj History Story
   ========================================================= */

.history-story-block{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid #eadfd4;
}

.history-story-block h2{
  margin:0 0 16px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(1.75rem,2.5vw,2.25rem);
  line-height:1.1;
}

.history-story-block h3{
  margin:28px 0 10px;
  color:#263248;
  font-family:var(--font-display);
  font-size:1.35rem;
}

.history-story-block p{
  margin:0 0 15px;
  color:#545b66;
  font-size:.98rem;
  line-height:1.68;
}

@media(max-width:700px){
  .history-story-block{
    margin-top:22px;
    padding-top:20px;
  }

  .history-story-block h2{
    font-size:1.7rem;
  }

  .history-story-block h3{
    font-size:1.22rem;
  }
}


/* =========================================================
   v1.10.14 Homepage History Summary + Full History Page
   ========================================================= */

.history-summary-section{
  padding:54px 0;
  background:linear-gradient(180deg,#f9f4ec,#fffaf4);
}

.history-summary-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:54px;
  align-items:center;
}

.history-summary-copy{
  max-width:790px;
}

.history-summary-copy .about-label{
  margin-bottom:18px;
}

.history-summary-copy h2{
  margin:0 0 16px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(2rem,3vw,2.7rem);
  line-height:1.06;
}

.history-summary-text{
  color:#555c67;
  font-size:1rem;
  line-height:1.68;
}

.history-read-more{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  padding:12px 20px;
  border-radius:9px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-size:.92rem;
  font-weight:700;
  box-shadow:0 8px 20px rgba(138,29,36,.10);
}

.history-summary-image-wrap{
  width:280px;
  height:280px;
  justify-self:center;
  overflow:hidden;
  border-radius:50%;
  border:7px solid rgba(255,255,255,.86);
  background:#efe3d6;
  box-shadow:0 16px 38px rgba(59,35,23,.12);
}

.history-summary-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  border-radius:50%;
}

/* Full History page */
.history-full-page{
  padding:62px 0 76px;
  background:#fffdf9;
}

.history-full-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:72px;
  align-items:start;
}

.history-full-article{
  max-width:820px;
}

.history-full-article p{
  margin:0 0 18px;
  color:#535a65;
  font-size:1rem;
  line-height:1.72;
}

.history-full-article h2{
  position:relative;
  margin:48px 0 16px;
  padding-top:8px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(1.8rem,2.5vw,2.3rem);
  line-height:1.1;
}

.history-full-article h2:first-child{
  margin-top:0;
}

.history-full-article h2::before{
  content:"";
  position:absolute;
  top:-8px;
  left:0;
  width:44px;
  height:2px;
  background:var(--primary);
}

.history-full-article h3{
  margin:28px 0 10px;
  color:#263248;
  font-family:var(--font-display);
  font-size:1.4rem;
}

.history-full-aside{
  position:sticky;
  top:110px;
  display:grid;
  gap:18px;
}

.history-full-image-card{
  overflow:hidden;
  border-radius:18px;
  border:1px solid #eadfd4;
  background:#fff;
  box-shadow:0 12px 30px rgba(70,42,28,.06);
}

.history-full-image-card img{
  width:100%;
  height:330px;
  display:block;
  object-fit:cover;
}

@media(max-width:900px){
  .history-summary-grid,
  .history-full-layout{
    grid-template-columns:1fr;
    gap:30px;
  }

  .history-summary-image-wrap{
    width:250px;
    height:250px;
    justify-self:start;
  }

  .history-full-aside{
    position:static;
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .history-summary-image-wrap{
    width:220px;
    height:220px;
    justify-self:center;
    border-width:5px;
  }

  .history-full-aside{
    grid-template-columns:1fr;
  }

  .history-full-image-card img{
    height:280px;
  }
}


/* =========================================================
   v1.10.15 Visit Section Refinement
   ========================================================= */

.visit-refined-section{
  padding:54px 0 58px;
  background:linear-gradient(180deg,#fffdf9,#fbf6ee);
}

.visit-refined-card{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  overflow:hidden;
  border:1px solid #e8dccf;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 34px rgba(70,42,28,.05);
}

.visit-refined-intro{
  position:relative;
  padding:36px 38px 34px;
  background:#fff;
}

.visit-refined-intro .about-label{
  margin-bottom:18px;
}

.visit-refined-intro h2{
  margin:0 0 12px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:clamp(1.8rem,2.5vw,2.35rem);
  line-height:1.08;
}

.visit-refined-intro p{
  position:relative;
  z-index:2;
  max-width:620px;
  margin:0;
  color:#555c67;
  font-size:.98rem;
  line-height:1.65;
}

.visit-map-btn{
  position:relative;
  z-index:2;
  display:inline-flex;
  margin-top:22px;
}

.visit-watermark{
  position:absolute;
  right:24px;
  bottom:8px;
  color:rgba(138,29,36,.035);
  font-family:var(--font-display);
  font-size:8rem;
  line-height:1;
  pointer-events:none;
}

.visit-refined-details{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding:30px;
  background:#f7efe3;
  border-left:1px solid #e8dccf;
  align-content:center;
}

.visit-info-card{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-height:94px;
  padding:16px 17px;
  border:1px solid #e4d6c8;
  border-radius:12px;
  background:#fff;
}

.visit-info-icon{
  flex:0 0 34px;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f5e7d5;
  color:var(--primary);
  font-size:.95rem;
  font-weight:700;
}

.visit-info-label{
  display:block;
  margin-bottom:5px;
  color:var(--primary);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.visit-info-card strong{
  display:block;
  color:#2d3442;
  font-size:.9rem;
  line-height:1.45;
  font-weight:600;
}

.visit-info-card a{
  color:#2d3442;
  text-decoration:none;
}

.visit-info-card a:hover{
  color:var(--primary);
}

@media(max-width:950px){
  .visit-refined-card{
    grid-template-columns:1fr;
  }

  .visit-refined-details{
    border-left:0;
    border-top:1px solid #e8dccf;
  }
}

@media(max-width:650px){
  .visit-refined-intro{
    padding:28px 24px;
  }

  .visit-refined-details{
    grid-template-columns:1fr;
    padding:22px;
  }

  .visit-info-card{
    min-height:auto;
  }

  .visit-watermark{
    display:none;
  }
}


/* =========================================================
   v1.10.16 Social Media Integration
   ========================================================= */

.visit-social-block{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid #eee3d8;
}

.visit-social-title{
  color:#6a6060;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.social-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.social-link{
  width:36px;
  height:36px;
  display:inline-grid;
  place-items:center;
  border:1px solid rgba(138,29,36,.28);
  border-radius:50%;
  color:var(--primary);
  background:#fff;
  text-decoration:none;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.social-link svg{
  width:17px;
  height:17px;
  fill:currentColor;
}

.social-link:hover{
  transform:translateY(-2px);
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.footer-socials{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-socials > span{
  color:#7d6d66;
  font-family:var(--font-display);
  font-size:.92rem;
  font-weight:650;
}

.social-links-footer .social-link{
  width:32px;
  height:32px;
  background:transparent;
}

.social-links-footer .social-link svg{
  width:15px;
  height:15px;
}

@media(max-width:600px){
  .visit-social-block{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}


/* =========================================================
   v1.10.17 Footer Social Visibility Improvement
   ========================================================= */

.copyright-footer{
  background:#35110f;
  color:#f8ede7;
}

.footer-inner{
  gap:14px;
  padding-top:18px;
  padding-bottom:18px;
}

.footer-socials{
  gap:16px;
}

.footer-socials > span{
  color:#f2d9ce;
  font-family:var(--font-display);
  font-size:1rem;
  font-weight:700;
  letter-spacing:.01em;
}

.social-links-footer{
  gap:10px;
}

.social-links-footer .social-link{
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.06);
  color:#fff3ee;
  box-shadow:0 0 0 1px rgba(255,255,255,.02) inset;
}

.social-links-footer .social-link svg{
  width:17px;
  height:17px;
}

.social-links-footer .social-link:hover{
  background:#fff;
  border-color:#fff;
  color:var(--primary);
  transform:translateY(-2px);
}

.copyright-footer p{
  color:rgba(255,255,255,.78);
}

@media(max-width:600px){
  .footer-socials{
    flex-direction:column;
    gap:10px;
  }

  .footer-socials > span{
    font-size:.95rem;
  }
}


/* =========================================================
   v1.10.18 Official Notice + Announcement Bar
   ========================================================= */

.site-announcement{
  position:relative;
  z-index:1100;
  background:#6f1519;
  color:#fff8f3;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.site-announcement-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  padding-top:8px;
  padding-bottom:8px;
}

.site-announcement-message{
  display:flex;
  align-items:center;
  gap:9px;
  color:#fff8f3;
  font-size:.78rem;
  line-height:1.4;
  font-weight:600;
  text-align:center;
}

.site-announcement-icon{
  flex:0 0 auto;
  color:#ffd7a8;
  font-size:.95rem;
}

.site-announcement-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:7px;
  color:#fff;
  text-decoration:none;
  font-size:.76rem;
  font-weight:750;
  white-space:nowrap;
}

.site-announcement-link:hover{
  background:#fff;
  border-color:#fff;
  color:#6f1519;
}

/* Official notice page */
.official-notice-section{
  padding:58px 0 72px;
  background:#fffdf9;
}

.official-notice-card{
  max-width:930px;
  margin:0 auto;
  overflow:hidden;
  border:1px solid #eadfd4;
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 38px rgba(70,42,28,.055);
}

.official-notice-alert{
  display:flex;
  gap:18px;
  padding:25px 28px;
  background:#fff2e7;
  border-bottom:1px solid #ead8c8;
}

.official-notice-alert-icon{
  flex:0 0 46px;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#7b171c;
  color:#fff;
  font-size:1.2rem;
}

.official-notice-alert strong{
  display:block;
  margin-bottom:6px;
  color:#7b171c;
  font-family:var(--font-display);
  font-size:1.35rem;
}

.official-notice-alert p{
  margin:0;
  color:#5b5f68;
  line-height:1.55;
}

.official-notice-content{
  padding:34px 36px 38px;
}

.official-notice-content h2{
  margin:34px 0 12px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:1.8rem;
}

.official-notice-content h2:first-child{
  margin-top:0;
}

.official-notice-content p{
  margin:0 0 16px;
  color:#545b66;
  font-size:.98rem;
  line-height:1.7;
}

.official-notice-reminder{
  margin-top:30px;
  padding:24px 26px;
  border-left:4px solid var(--primary);
  border-radius:10px;
  background:#f8efe5;
}

.official-notice-reminder span{
  display:block;
  margin-bottom:6px;
  color:var(--primary);
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:700;
}

.official-notice-reminder strong{
  color:#293241;
  line-height:1.5;
}

@media(max-width:760px){
  .site-announcement-inner{
    align-items:stretch;
    flex-direction:column;
    gap:7px;
    padding-top:9px;
    padding-bottom:9px;
  }

  .site-announcement-message{
    justify-content:center;
    font-size:.73rem;
  }

  .site-announcement-link{
    align-self:center;
  }

  .official-notice-alert{
    padding:22px;
  }

  .official-notice-content{
    padding:28px 22px 32px;
  }
}


/* =========================================================
   v1.10.19 Mobile Responsive Optimization
   ========================================================= */

/* Safer responsive sizing */
html{
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin-left:auto;
  margin-right:auto;
}

/* -------------------------
   Header / Navigation
   ------------------------- */

.topbar{
  position:sticky;
  top:0;
  z-index:1050;
}

.nav{
  min-height:72px;
}

.menu-btn{
  min-width:44px;
  min-height:44px;
  display:none;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
}

.navlinks a{
  min-height:40px;
  display:inline-flex;
  align-items:center;
}

/* -------------------------
   Announcement
   ------------------------- */

.site-announcement-inner{
  max-width:1180px;
}

.site-announcement-link{
  min-height:34px;
}

/* -------------------------
   Hero
   ------------------------- */

.hero{
  min-height:clamp(520px,68vh,760px);
}

.hero-inner{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
}

.hero-left{
  max-width:650px;
}

.hero-left h1{
  font-size:clamp(2.4rem,5vw,4.8rem);
}

.hero-place{
  font-size:clamp(1rem,2vw,1.35rem);
}

.hero-quote{
  font-size:clamp(1.25rem,2.6vw,2rem);
}

.hero-desc{
  font-size:clamp(.95rem,1.7vw,1.15rem);
}

/* -------------------------
   Feature strip
   ------------------------- */

.feature-row{
  gap:12px;
}

.feature-item{
  min-width:0;
}

/* -------------------------
   About / History
   ------------------------- */

.about-feature-grid,
.history-summary-grid{
  min-width:0;
}

.about-feature-copy,
.history-summary-copy{
  min-width:0;
}

/* -------------------------
   Event cards
   ------------------------- */

.festival-showcase-card{
  min-width:0;
}

.festival-showcase-body h3{
  overflow-wrap:anywhere;
}

/* -------------------------
   Gallery
   ------------------------- */

.reference-gallery-section .gallery-grid{
  min-width:0;
}

/* -------------------------
   Visit
   ------------------------- */

.visit-refined-card,
.visit-refined-intro,
.visit-refined-details{
  min-width:0;
}

/* -------------------------
   Inner pages
   ------------------------- */

.heritage-layout,
.history-full-layout{
  min-width:0;
}

/* =========================================================
   Tablet / smaller desktop
   ========================================================= */

@media(max-width:1024px){

  .container,
  .hero-inner{
    width:min(100% - 28px,960px);
  }

  .nav{
    min-height:66px;
  }

  .about-feature-grid,
  .history-summary-grid{
    grid-template-columns:minmax(0,1fr) 280px;
    gap:34px;
  }

  .about-feature-image-wrap,
  .history-summary-image-wrap{
    width:240px;
    height:240px;
  }

  .festival-showcase-grid.three-cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

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

  .visit-refined-card{
    grid-template-columns:1fr;
  }

  .visit-refined-details{
    border-left:0;
    border-top:1px solid #e8dccf;
  }

  .heritage-layout,
  .history-full-layout{
    grid-template-columns:minmax(0,1fr) 260px;
    gap:40px;
  }
}

/* =========================================================
   Tablet / mobile nav
   ========================================================= */

@media(max-width:820px){

  .menu-btn{
    display:inline-flex;
    border:1px solid rgba(138,29,36,.18);
    border-radius:8px;
    background:#fffaf4;
    color:var(--primary);
    cursor:pointer;
  }

  .nav{
    position:relative;
    justify-content:space-between;
    gap:14px;
  }

  .brand{
    max-width:calc(100% - 62px);
    line-height:1.2;
  }

  .navlinks{
    position:absolute;
    left:14px;
    right:14px;
    top:calc(100% + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:12px;
    background:#fffdf9;
    border:1px solid #eadfd4;
    border-radius:12px;
    box-shadow:0 16px 36px rgba(55,34,24,.12);
  }

  .navlinks.open{
    display:flex;
  }

  .navlinks a{
    width:100%;
    min-height:44px;
    padding:10px 12px;
    border-radius:8px;
    justify-content:flex-start;
  }

  .navlinks a:hover,
  .navlinks a.active{
    background:#f7ede2;
  }

  .hero{
    min-height:560px;
  }

  .hero-inner{
    min-height:560px;
    padding-top:46px;
    padding-bottom:42px;
    display:flex;
    align-items:flex-end;
  }

  .hero-left{
    max-width:560px;
  }

  .hero-right-quote{
    display:none;
  }

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

  .about-feature-grid,
  .history-summary-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-feature-image-wrap,
  .history-summary-image-wrap{
    width:230px;
    height:230px;
    justify-self:start;
  }

  .festival-showcase-head{
    align-items:flex-start;
    flex-direction:column;
    gap:14px;
  }

  .festival-all-btn{
    margin-top:0;
  }

  .events-page-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .heritage-layout,
  .history-full-layout{
    grid-template-columns:1fr;
  }

  .heritage-sidebar,
  .history-full-aside{
    position:static;
  }

  .heritage-sidebar{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .history-full-aside{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

/* =========================================================
   Large phones
   ========================================================= */

@media(max-width:700px){

  .container,
  .hero-inner{
    width:calc(100% - 24px);
  }

  .site-announcement-inner{
    align-items:stretch;
    gap:7px;
    padding:8px 12px;
  }

  .site-announcement-message{
    font-size:.72rem;
    line-height:1.35;
  }

  .site-announcement-link{
    align-self:center;
    min-height:32px;
    padding:5px 9px;
    font-size:.72rem;
  }

  .hero{
    min-height:520px;
    background-position:center center !important;
  }

  .hero-inner{
    min-height:520px;
    padding-top:38px;
    padding-bottom:34px;
  }

  .hero-left h1{
    font-size:clamp(2rem,9vw,3rem);
    line-height:1.08;
  }

  .hero-place{
    font-size:1rem;
  }

  .hero-quote{
    font-size:1.3rem;
  }

  .hero-desc{
    font-size:.95rem;
    line-height:1.5;
  }

  .hero-btn{
    min-height:44px;
    padding:11px 17px;
  }

  .feature-row{
    grid-template-columns:1fr;
  }

  .feature-item{
    min-height:72px;
  }

  .about-feature-section,
  .history-summary-section,
  .festival-showcase-section,
  .reference-gallery-section,
  .visit-refined-section{
    padding-top:38px;
    padding-bottom:40px;
  }

  .about-feature-copy h2,
  .history-summary-copy h2{
    font-size:2rem;
  }

  .about-feature-copy .home-about-copy,
  .history-summary-text{
    font-size:.95rem;
    line-height:1.58;
  }

  .about-feature-image-wrap,
  .history-summary-image-wrap{
    width:215px;
    height:215px;
    justify-self:center;
    border-width:5px;
  }

  .about-feature-button,
  .history-read-more,
  .gallery-outline-btn,
  .visit-map-btn{
    min-height:44px;
  }

  .festival-showcase-grid.three-cards,
  .festival-showcase-grid.two-cards,
  .festival-showcase-grid.one-card,
  .events-page-grid{
    grid-template-columns:1fr;
  }

  .festival-showcase-media{
    height:210px;
  }

  .reference-gallery-section .gallery-grid{
    grid-template-columns:1fr;
  }

  .reference-gallery-head{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }

  .reference-gallery-section .gallery-grid img,
  .reference-gallery-section .gallery-grid figure:nth-child(1) img,
  .reference-gallery-section .gallery-grid figure:nth-child(5) img,
  .reference-gallery-section .gallery-grid figure:nth-child(9) img{
    height:260px;
  }

  .visit-refined-intro{
    padding:26px 22px;
  }

  .visit-refined-intro h2{
    font-size:1.8rem;
  }

  .visit-refined-details{
    grid-template-columns:1fr;
    padding:20px;
  }

  .visit-info-card{
    min-height:auto;
  }

  .visit-social-block{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .social-link{
    width:40px;
    height:40px;
  }

  .heritage-hero{
    padding:44px 0 38px;
  }

  .heritage-hero h1{
    font-size:2.5rem;
  }

  .heritage-page,
  .history-full-page,
  .events-page-section,
  .official-notice-section{
    padding-top:40px;
    padding-bottom:50px;
  }

  .heritage-sidebar,
  .history-full-aside{
    grid-template-columns:1fr;
  }

  .official-notice-alert{
    flex-direction:column;
  }

  .official-notice-content{
    padding:26px 20px 30px;
  }

  .footer-inner{
    text-align:center;
  }
}

/* =========================================================
   Small phones
   ========================================================= */

@media(max-width:480px){

  .container,
  .hero-inner{
    width:calc(100% - 20px);
  }

  .brand{
    font-size:1.15rem;
  }

  .site-announcement-message{
    align-items:flex-start;
    text-align:left;
  }

  .hero{
    min-height:490px;
  }

  .hero-inner{
    min-height:490px;
  }

  .hero-left h1{
    font-size:2rem;
  }

  .hero-divider{
    margin:10px 0;
  }

  .about-feature-image-wrap,
  .history-summary-image-wrap{
    width:200px;
    height:200px;
  }

  .festival-showcase-body{
    padding:15px 16px 18px;
  }

  .festival-showcase-body h3{
    font-size:1.25rem;
  }

  .reference-gallery-section .gallery-grid img,
  .reference-gallery-section .gallery-grid figure:nth-child(1) img,
  .reference-gallery-section .gallery-grid figure:nth-child(5) img,
  .reference-gallery-section .gallery-grid figure:nth-child(9) img{
    height:235px;
  }

  .visit-refined-card{
    border-radius:14px;
  }

  .visit-refined-intro{
    padding:22px 18px;
  }

  .visit-refined-details{
    padding:16px;
  }

  .visit-info-card{
    padding:14px;
  }

  .heritage-hero h1{
    font-size:2.1rem;
  }

  .heritage-hero p{
    font-size:1.05rem;
  }

  .official-notice-alert{
    padding:20px;
  }

  .footer-socials{
    flex-direction:column;
  }

  .copyright-footer p{
    font-size:.78rem;
    line-height:1.5;
  }
}

/* v1.10.20 Sharing, Event Detail, SEO */
.page-share{display:flex;align-items:center;gap:9px;flex-wrap:wrap;margin-top:34px;padding-top:22px;border-top:1px solid #eadfd4}
.page-share>span{margin-right:4px;color:#6c5f59;font-weight:750;font-size:.82rem;text-transform:uppercase;letter-spacing:.05em}
.page-share a,.page-share button{min-height:38px;display:inline-flex;align-items:center;padding:8px 12px;border:1px solid rgba(138,29,36,.25);border-radius:8px;background:#fff;color:var(--primary);font:inherit;font-size:.82rem;font-weight:700;text-decoration:none;cursor:pointer}
.page-share a:hover,.page-share button:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.festival-card-more{display:inline-block;margin-top:10px;color:var(--primary);font-weight:750;text-decoration:none}
.event-detail-page{padding:54px 0 68px;background:#fffdf9}
.event-detail-layout{max-width:900px}
.event-detail-article{padding:32px;border:1px solid #eadfd4;border-radius:18px;background:#fff;box-shadow:0 12px 34px rgba(70,42,28,.05)}
.event-detail-image{display:block;width:100%;max-height:520px;object-fit:cover;border-radius:13px;margin-bottom:26px}
.event-detail-lead{font-family:var(--font-display);font-size:1.3rem;line-height:1.55;color:#51453f}
.event-detail-content{line-height:1.75;color:#505760}
@media(max-width:700px){.event-detail-page{padding:36px 0 46px}.event-detail-article{padding:20px}.page-share{align-items:stretch}.page-share>span{width:100%}.page-share a,.page-share button{justify-content:center;flex:1}}

/* =========================================================
   v1.10.21 Community Directory
   ========================================================= */
.community-page{padding:48px 0 68px;background:#fffdf9}
.community-search{display:grid;grid-template-columns:minmax(0,1fr) 240px auto auto;gap:10px;margin-bottom:30px}
.community-search input,.community-search select{min-height:46px;border:1px solid #ded1c5;border-radius:10px;padding:10px 12px;background:#fff}
.community-search button,.community-search a{min-height:46px;display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:10px;border:1px solid var(--primary);text-decoration:none;font-weight:750}
.community-search button{background:var(--primary);color:#fff}.community-search a{color:var(--primary);background:#fff}
.community-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:15px;margin-bottom:48px}
.community-category-card{display:flex;flex-direction:column;min-height:150px;padding:20px;border:1px solid #eadfd4;border-radius:16px;background:#fff;color:#3e312c;text-decoration:none;box-shadow:0 10px 28px rgba(70,42,28,.05);transition:.2s ease}
.community-category-card:hover{transform:translateY(-3px);border-color:#d6b9a5;box-shadow:0 16px 34px rgba(70,42,28,.09)}
.community-category-icon{font-size:1.65rem;margin-bottom:10px}.community-category-card strong{font-family:var(--font-display);font-size:1.12rem;color:var(--primary)}.community-category-card small{margin-top:4px;color:#8b766b}.community-category-card p{font-size:.86rem;line-height:1.45;color:#6d625d;margin:10px 0 0}
.community-results-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:18px}.community-results-head h2{margin:5px 0 0;font-size:2rem}.community-results-head>span{color:#7a6b64;font-size:.9rem}
.community-listing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.community-card{overflow:hidden;border:1px solid #eadfd4;border-radius:16px;background:#fff;box-shadow:0 10px 30px rgba(70,42,28,.055)}
.community-card-main{display:block;color:inherit;text-decoration:none}.community-card-image{height:190px;background:#f5ece2}.community-card-image img{width:100%;height:100%;object-fit:cover}.community-card-placeholder{height:100%;display:grid;place-items:center;font-size:3rem;color:#9b6953}
.community-card-body{padding:18px}.community-card-category{display:inline-block;margin-bottom:7px;color:#9a6652;font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.community-card-body h3{margin:0 0 8px;font-size:1.35rem;color:#5c171b}.community-card-body p{margin:0;color:#67605c;line-height:1.5;font-size:.92rem}.community-card-address{margin-top:12px;color:#806f66;font-size:.85rem;line-height:1.4}
.community-card-actions{display:flex;border-top:1px solid #eee2d7}.community-card-actions a{flex:1;min-height:42px;display:flex;align-items:center;justify-content:center;text-decoration:none;color:var(--primary);font-size:.82rem;font-weight:800;border-right:1px solid #eee2d7}.community-card-actions a:last-child{border-right:0}.community-card-actions a:hover{background:#f8eee5}
.community-empty{text-align:center;padding:52px 20px;border:1px dashed #d7c6b8;border-radius:16px;background:#fff}.community-empty>div{font-size:2.4rem}.community-empty strong{display:block;margin:10px 0 5px;font-family:var(--font-display);font-size:1.3rem}
.community-disclaimer{margin-top:44px;padding:18px 20px;border-radius:12px;background:#f7efe6;border:1px solid #ead9ca;color:#655a54}.community-disclaimer strong{color:#6f1519}.community-disclaimer p{margin:5px 0 0;font-size:.84rem;line-height:1.5}
.community-detail-hero{padding:45px 0 36px;background:#f7efe6;border-bottom:1px solid #eadacb}.community-back{display:inline-block;margin-bottom:20px;color:var(--primary);text-decoration:none;font-size:.88rem;font-weight:750}.community-detail-heading{display:flex;align-items:flex-start;gap:18px}.community-detail-icon{width:58px;height:58px;flex:0 0 58px;display:grid;place-items:center;border-radius:50%;background:#fff;border:1px solid #e2cfc0;font-size:1.7rem}.community-detail-heading span{color:#9a6652;font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em}.community-detail-heading h1{margin:5px 0 7px;font-size:clamp(2rem,4vw,3.3rem)}.community-detail-heading p{margin:0;color:#6b5d57;max-width:780px}
.community-detail-page{padding:48px 0 68px}.community-detail-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:30px}.community-detail-main{min-width:0}.community-detail-image{width:100%;max-height:520px;object-fit:cover;border-radius:16px;margin-bottom:24px}.community-detail-copy{line-height:1.75;color:#505760}.community-contact-card{position:sticky;top:100px;border:1px solid #eadfd4;border-radius:16px;padding:20px;background:#fff;box-shadow:0 12px 32px rgba(70,42,28,.05)}.community-contact-card h3{margin-top:0}.community-contact-card>div:not(.community-detail-actions){padding:10px 0;border-bottom:1px solid #f0e7df}.community-contact-card span{display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:.06em;color:#94827a;font-weight:800}.community-contact-card strong{display:block;margin-top:4px;font-size:.92rem;line-height:1.4}.community-detail-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:16px}.community-detail-actions a{min-height:42px;display:flex;align-items:center;justify-content:center;border:1px solid #dbc8b9;border-radius:9px;text-decoration:none;color:var(--primary);font-weight:800;font-size:.82rem}.community-detail-actions a.primary{background:var(--primary);border-color:var(--primary);color:#fff}.community-small-note{margin-top:14px;padding:13px;border-radius:10px;background:#f8f1e9;color:#776a63;font-size:.78rem;line-height:1.45}
@media(max-width:1024px){.community-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.community-listing-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.community-detail-grid{grid-template-columns:minmax(0,1fr) 290px}}
@media(max-width:760px){.community-search{grid-template-columns:1fr}.community-category-grid,.community-listing-grid{grid-template-columns:1fr}.community-results-head{align-items:flex-start;flex-direction:column;gap:6px}.community-detail-grid{grid-template-columns:1fr}.community-contact-card{position:static}.community-card-image{height:220px}}
@media(max-width:480px){.community-page{padding-top:34px}.community-category-grid{gap:10px}.community-category-card{min-height:auto}.community-detail-heading{flex-direction:column}.community-detail-actions{grid-template-columns:1fr}}

/* v1.10.21-hotfix2 Community UI polish */
.community-hero{
  background:linear-gradient(180deg,#f7ede2 0%,#fff9f1 100%);
  border-bottom:1px solid #ead9ca;
  padding:62px 0 56px;
  text-align:center;
}
.community-hero-inner{max-width:860px;margin:0 auto}
.community-eyebrow{
  display:inline-block;margin-bottom:12px;color:#9a6551;font-size:.76rem;
  font-weight:800;letter-spacing:.14em;text-transform:uppercase;
}
.community-hero h1{
  margin:0;color:#761d22;font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.35rem,5vw,4.25rem);line-height:1.04;font-weight:500;
}
.community-hero p{
  max-width:720px;margin:16px auto 0;color:#6e625c;
  font-family:Georgia,"Times New Roman",serif;font-size:1.12rem;line-height:1.6;
}
.community-page{padding-top:36px!important}
.community-search{
  position:relative;z-index:2;max-width:1040px;margin:-62px auto 42px!important;
  padding:16px;background:#fff;border:1px solid #eadfd4;border-radius:16px;
  box-shadow:0 16px 38px rgba(70,42,28,.09);
}
.community-search input,.community-search select{
  width:100%;font:inherit;color:#493f3a;background:#fff;
  border:1px solid #dccfc3!important;border-radius:9px!important;
}
.community-search button{
  border:0!important;background:#7b1d22!important;color:#fff!important;
  cursor:pointer;font:inherit;
}
.community-search a{font:inherit}
.community-category-grid{max-width:1040px;margin-left:auto;margin-right:auto}
.community-category-card{
  position:relative;overflow:hidden;text-decoration:none!important;
  border:1px solid #e6d8cc!important;background:#fff!important;
}
.community-category-card:after{
  content:"→";position:absolute;right:18px;top:18px;color:#b18c78;
  font-size:1.15rem;transition:transform .2s ease;
}
.community-category-card:hover:after{transform:translateX(3px)}
.community-category-card strong{text-decoration:none!important}
.community-category-card p{text-decoration:none!important}
.community-results-head{max-width:1040px;margin-left:auto;margin-right:auto}
.community-results-head p{margin:7px 0 0;color:#85766f;font-size:.9rem}
.community-result-count{
  display:inline-flex!important;align-items:center;justify-content:center;
  min-height:34px;padding:7px 12px;border-radius:999px;
  background:#f5e8dc;color:#7b1d22!important;font-weight:800!important;
}
.community-listing-grid{max-width:1040px;margin-left:auto;margin-right:auto}
.community-card{
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.community-card:hover{transform:translateY(-3px);border-color:#d8c1b0;box-shadow:0 16px 38px rgba(70,42,28,.10)}
.community-card-main{text-decoration:none!important}
.community-card-body h3{font-family:Georgia,"Times New Roman",serif!important}
.community-card-body p,.community-card-address{text-decoration:none!important}
.community-card-actions a{text-decoration:none!important}
.community-disclaimer{
  max-width:1040px;margin-left:auto!important;margin-right:auto!important;
  display:grid;grid-template-columns:auto 1fr;column-gap:12px;align-items:start;
}
.community-disclaimer:before{
  content:"i";width:26px;height:26px;display:grid;place-items:center;
  border-radius:50%;background:#7b1d22;color:#fff;font-family:Georgia,serif;font-weight:bold;
}
.community-disclaimer strong,.community-disclaimer p{grid-column:2}
.community-disclaimer strong{grid-row:1}.community-disclaimer p{grid-row:2}
@media(max-width:820px){
  .community-hero{padding:48px 0 72px}
  .community-search{margin:-58px 0 34px!important;grid-template-columns:1fr 1fr!important}
  .community-search input{grid-column:1/-1}
}
@media(max-width:600px){
  .community-hero{padding:42px 0 70px}
  .community-hero h1{font-size:2.45rem}
  .community-hero p{font-size:1rem}
  .community-search{grid-template-columns:1fr!important;padding:12px}
  .community-search input{grid-column:auto}
  .community-category-card{padding:18px!important}
  .community-results-head{margin-top:34px}
  .community-result-count{align-self:flex-start}
  .community-disclaimer{grid-template-columns:auto 1fr}
}

/* =========================================================
   v1.10.21-hotfix5 Responsive Community Images
   ========================================================= */
.community-card-image{
  height:210px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:linear-gradient(180deg,#fbf7f2,#f5ece2);
}
.community-card-image img{
  display:block;
  width:100%;
  height:100%;
}
.community-card-image img.community-image-contain{
  object-fit:contain!important;
  padding:18px;
}
.community-card-image img.community-image-cover{
  object-fit:cover!important;
  padding:0;
}

.community-detail-image-wrap{
  width:100%;
  min-height:280px;
  max-height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid #eadfd4;
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f8f1e9);
  margin-bottom:26px;
}
.community-detail-image-wrap .community-detail-image{
  display:block;
  width:100%;
  height:100%;
  max-height:600px;
  margin:0!important;
  border-radius:0!important;
}
.community-detail-image-contain{
  padding:20px;
}
.community-detail-image-contain .community-detail-image{
  object-fit:contain!important;
  width:auto;
  max-width:100%;
  height:auto;
  max-height:560px;
}
.community-detail-image-cover .community-detail-image{
  object-fit:cover!important;
  width:100%;
  height:clamp(340px,50vw,560px);
}

@media(max-width:820px){
  .community-card-image{height:200px}
  .community-detail-image-wrap{min-height:240px;max-height:520px}
  .community-detail-image-contain{padding:16px}
  .community-detail-image-cover .community-detail-image{height:clamp(280px,65vw,480px)}
}
@media(max-width:520px){
  .community-card-image{height:180px}
  .community-card-image img.community-image-contain{padding:14px}
  .community-detail-image-wrap{min-height:210px;max-height:420px;border-radius:14px}
  .community-detail-image-contain{padding:12px}
  .community-detail-image-contain .community-detail-image{max-height:390px}
  .community-detail-image-cover .community-detail-image{height:300px}
}

/* v1.10.21-hotfix6 — Smaller Community Images */
.community-card-image{height:165px!important}
.community-card-image img.community-image-contain{
  width:auto!important;
  max-width:82%!important;
  height:auto!important;
  max-height:135px!important;
  padding:8px!important;
}
.community-detail-image-wrap{
  width:min(100%,620px)!important;
  min-height:0!important;
  max-height:none!important;
  margin:0 auto 26px!important;
  padding:0!important;
}
.community-detail-image-contain{
  min-height:0!important;
  padding:18px!important;
}
.community-detail-image-contain .community-detail-image{
  width:auto!important;
  max-width:100%!important;
  height:auto!important;
  max-height:380px!important;
  object-fit:contain!important;
}
.community-detail-image-cover{
  height:380px!important;
}
.community-detail-image-cover .community-detail-image{
  width:100%!important;
  height:100%!important;
  max-height:none!important;
  object-fit:cover!important;
}
@media(max-width:820px){
  .community-card-image{height:150px!important}
  .community-card-image img.community-image-contain{max-height:122px!important}
  .community-detail-image-wrap{width:min(100%,520px)!important}
  .community-detail-image-contain .community-detail-image{max-height:320px!important}
  .community-detail-image-cover{height:320px!important}
}
@media(max-width:520px){
  .community-card-image{height:140px!important}
  .community-card-image img.community-image-contain{max-width:78%!important;max-height:112px!important}
  .community-detail-image-wrap{width:min(100%,390px)!important}
  .community-detail-image-contain{padding:14px!important}
  .community-detail-image-contain .community-detail-image{max-height:260px!important}
  .community-detail-image-cover{height:260px!important}
}

/* =========================================================
   v1.10.21-hotfix7 Editable Header Brand + Logo
   ========================================================= */
.brand{
  display:inline-flex!important;
  align-items:center;
  gap:11px;
  min-width:0;
  max-width:min(430px,44vw);
}
.brand-logo{
  display:block;
  width:auto;
  height:var(--brand-logo-height,44px);
  max-width:120px;
  object-fit:contain;
  flex:0 0 auto;
}
.brand-name{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  line-height:1.05;
}
.brand-logo_only{
  gap:0;
}
.brand-logo_only .brand-logo{
  max-width:190px;
}
@media(max-width:900px){
  .brand{max-width:min(72vw,390px)}
  .brand-logo{height:min(var(--brand-logo-height,44px),40px);max-width:105px}
  .brand-logo_only .brand-logo{max-width:165px}
  .brand-name{font-size:1.26rem}
}
@media(max-width:520px){
  .brand{gap:8px;max-width:72vw}
  .brand-logo{height:min(var(--brand-logo-height,44px),36px);max-width:78px}
  .brand-logo_only .brand-logo{max-width:135px}
  .brand-name{font-size:1.08rem}
}



/* v1.10.23-hotfix1 Professional Contact Us modal */
.contact-open{cursor:pointer}
.contact-modal{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;padding:24px}
.contact-modal.open{display:flex}
.contact-modal-backdrop{position:absolute;inset:0;background:rgba(28,13,11,.72);backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px)}
.contact-modal-shell{position:relative;z-index:1;width:min(1080px,96vw);max-height:calc(100vh - 44px);display:grid;grid-template-columns:minmax(300px,37%) minmax(0,63%);overflow:hidden;background:#fff;border:1px solid rgba(255,255,255,.6);border-radius:26px;box-shadow:0 32px 90px rgba(39,13,10,.34)}
.contact-modal-close{position:absolute;right:18px;top:16px;z-index:5;width:42px;height:42px;border:0;border-radius:50%;display:grid;place-items:center;background:#f3ede8;color:#6f2a25;font-size:28px;line-height:1;cursor:pointer;transition:.2s ease}
.contact-modal-close:hover{transform:rotate(4deg) scale(1.04);background:#eadbd2}
.contact-info-panel{position:relative;min-height:680px;background-image:var(--contact-bg);background-size:cover;background-position:center}
.contact-info-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(44,18,16,.28) 0%,rgba(88,20,20,.74) 52%,rgba(86,20,20,.96) 100%)}
.contact-info-content{position:relative;z-index:1;height:100%;display:flex;flex-direction:column;padding:44px 34px 34px;color:#fff}
.contact-info-eyebrow{font-size:.76rem;letter-spacing:.16em;text-transform:uppercase;font-weight:800;color:#f0c467}
.contact-info-top{margin-top:auto}
.contact-info-top h2{margin:12px 0 10px;font-family:"Cormorant Garamond",serif;font-size:3rem;line-height:.98;color:#fff}
.contact-info-top h2 span{color:#efbc50}
.contact-info-top p{margin:0;max-width:320px;color:rgba(255,255,255,.9);line-height:1.7}
.contact-info-list{display:grid;gap:18px;margin-top:28px}
.contact-info-item{display:grid;grid-template-columns:48px 1fr;gap:14px;align-items:flex-start}
.contact-info-icon{width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:#e9b04a;color:#6f1e1e;box-shadow:0 8px 22px rgba(0,0,0,.15)}
.contact-info-icon svg{width:21px;height:21px;fill:currentColor}
.contact-info-item strong{display:block;font-size:.94rem;margin:1px 0 4px}
.contact-info-item span{display:block;font-size:.88rem;line-height:1.45;color:rgba(255,255,255,.88)}
.contact-info-signoff{display:flex;flex-direction:column;margin-top:28px;font-family:"Cormorant Garamond",serif;font-style:italic;font-size:1.12rem;line-height:1.15;color:#ffe0a0}
.contact-form-panel{overflow:auto;padding:36px 36px 28px;background:linear-gradient(180deg,#fff 0%,#fffdfa 100%)}
.contact-form-heading{text-align:center;padding:0 40px 22px}
.contact-heading-ornament{display:flex;align-items:center;justify-content:center;gap:11px;color:#dba53f;margin-bottom:8px}
.contact-heading-ornament span{width:62px;height:1px;background:#dba53f}
.contact-heading-ornament b{font-size:1.05rem}
.contact-form-heading h2{margin:0;font-family:"Cormorant Garamond",serif;font-size:2.55rem;line-height:1;color:#7e231f}
.contact-form-heading p{margin:10px auto 0;max-width:570px;color:#756b66;line-height:1.55}
.contact-form-alert{padding:12px 14px;border-radius:11px;margin-bottom:15px;font-weight:700}
.contact-form-alert.success{background:#e9f8ec;color:#286b39;border:1px solid #c9ebd0}
.contact-form-alert.error{background:#fff0ed;color:#8d3028;border:1px solid #f1cbc5}
.contact-form-pro label{display:block;font-weight:750;color:#433935;margin:0 0 7px}
.contact-form-pro label span{color:#b32723}
.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px 18px}
.contact-field{min-width:0}
.contact-input-wrap{position:relative}
.contact-field-icon{position:absolute;left:13px;top:50%;transform:translateY(-50%);width:20px;height:20px;color:#777;pointer-events:none}
.contact-field-icon svg{width:100%;height:100%;fill:currentColor;stroke:currentColor;stroke-width:0}
.contact-form-pro input,.contact-form-pro textarea{width:100%;border:1px solid #ded6d1;border-radius:10px;background:#fff;padding:12px 13px 12px 43px;font:inherit;color:#302824;outline:none;box-shadow:0 3px 10px rgba(69,42,29,.025);transition:.18s ease}
.contact-form-pro input{height:50px}
.contact-form-pro textarea{min-height:128px;resize:vertical;padding-top:14px}
.contact-form-pro input::placeholder,.contact-form-pro textarea::placeholder{color:#a49c96}
.contact-form-pro input:focus,.contact-form-pro textarea:focus{border-color:#c9922f;box-shadow:0 0 0 3px rgba(201,146,47,.12)}
.contact-message-field{margin-top:16px}
.contact-textarea-wrap .contact-field-icon{top:18px;transform:none}
.contact-security-block{margin-top:17px}
.contact-security-label{display:flex;align-items:center;gap:8px;margin-bottom:7px}
.contact-security-label label{margin:0}
.contact-shield{font-size:.74rem;color:#777}
.contact-captcha-row{display:grid;grid-template-columns:1fr 180px;gap:14px}
.contact-captcha-question{height:50px;display:flex;align-items:center;padding:0 15px;border:1px dashed #dfa344;border-radius:10px;background:linear-gradient(90deg,#f8ede2,#fff8f0);font-weight:800;color:#7e231f}
.contact-captcha-row input{padding-left:14px}
.contact-form-actions{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px}
.contact-submit-btn,.contact-whatsapp-btn{min-height:50px;border-radius:11px;display:inline-flex;align-items:center;justify-content:center;gap:9px;font-weight:800;text-decoration:none;transition:.18s ease}
.contact-submit-btn{border:0;background:linear-gradient(135deg,#8b211e,#a72924);color:#fff;cursor:pointer;box-shadow:0 10px 22px rgba(139,33,30,.18)}
.contact-submit-btn:hover{transform:translateY(-1px);box-shadow:0 14px 28px rgba(139,33,30,.24)}
.contact-submit-btn[disabled]{opacity:.65;cursor:wait;transform:none}
.contact-whatsapp-btn{border:1px solid #34a853;background:#fff;color:#23863d}
.contact-whatsapp-btn:hover{background:#f0fbf3}
.contact-form-note{text-align:center;font-size:.78rem;color:#857b75;margin:16px 0 0}
.contact-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important}
body.contact-modal-open{overflow:hidden}

@media(max-width:980px){
  .contact-modal-shell{grid-template-columns:1fr;max-width:760px}
  .contact-info-panel{min-height:220px}
  .contact-info-content{padding:28px 30px}
  .contact-info-top{margin-top:20px}
  .contact-info-top h2{font-size:2.45rem}
  .contact-info-top p{max-width:520px}
  .contact-info-list{grid-template-columns:repeat(3,1fr);gap:14px}
  .contact-info-item{grid-template-columns:40px 1fr;gap:10px}
  .contact-info-icon{width:38px;height:38px}
  .contact-info-signoff{display:none}
}
@media(max-width:700px){
  .contact-modal{padding:8px}
  .contact-modal-shell{width:100%;max-height:calc(100vh - 16px);border-radius:18px}
  .contact-modal-close{right:12px;top:10px;width:38px;height:38px}
  .contact-info-panel{display:none}
  .contact-form-panel{padding:24px 16px 18px}
  .contact-form-heading{padding:0 34px 18px 0;text-align:left}
  .contact-heading-ornament{justify-content:flex-start}
  .contact-heading-ornament span{width:42px}
  .contact-form-heading h2{font-size:2.15rem}
  .contact-form-grid{grid-template-columns:1fr;gap:13px}
  .contact-message-field{margin-top:13px}
  .contact-captcha-row{grid-template-columns:1fr}
  .contact-form-actions{grid-template-columns:1fr}
  .contact-form-note{text-align:left}
}
