/* =========================================================
   THE GRAND PALACE CONVENTION HALL
   Design system: maroon + zari gold + marigold, arch motif
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Jost:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;500;600;700&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root{
  --maroon:#6E1423;
  --maroon-dark:#450C16;
  --maroon-soft:#8C1F31;
  --maroon-tint:#F7EAEA;
  --gold:#C9A227;
  --gold-light:#E7C766;
  --gold-pale:#F3E3B8;
  --marigold:#D98324;
  --marigold-light:#F0A94E;
  --ivory:#FBF6EC;
  --ivory-deep:#F3E8D4;
  --ink:#211712;
  --ink-soft:#3A2C22;
  --white:#FFFFFF;
  --text:#2B2016;
  --text-soft:#5B4B3D;
  --line: rgba(110,20,35,0.14);
  --shadow-sm: 0 8px 24px -12px rgba(33,23,18,0.28);
  --shadow: 0 24px 60px -24px rgba(33,23,18,0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --container: 1220px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --header-h: 92px;
}

body.lang-bn{
  --font-display: 'Noto Serif Bengali', serif;
  --font-body: 'Hind Siliguri', sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body{
  margin:0;
  background:var(--ivory);
  color:var(--text);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1rem; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--maroon-dark);
  margin:0 0 .5em;
  font-weight:600;
  line-height:1.2;
}
p{ margin:0 0 1em; }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline:3px solid var(--marigold); outline-offset:3px; }

/* ---------- Language toggle visibility ---------- */
[data-bn], [data-en]{ }
body.lang-bn [data-en]{ display:none !important; }
body.lang-en [data-bn]{ display:none !important; }
body.lang-bn{ }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.76rem;
  font-weight:600;
  color:var(--marigold);
  margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:26px; height:1px; background:var(--marigold);
}
.section{ padding:88px 0; }
.section--tight{ padding:56px 0; }
.section--maroon{ background:var(--maroon); color:var(--ivory); }
.section--maroon h1,.section--maroon h2,.section--maroon h3{ color:var(--gold-light); }
.section--ink{ background:var(--ink); color:var(--ivory-deep); }
.section--ink h1,.section--ink h2,.section--ink h3{ color:var(--gold-light); }
.section--cream{ background:var(--ivory-deep); }
.center{ text-align:center; }
.max-w-720{ max-width:720px; margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px;
  border-radius:100px;
  font-weight:600;
  font-size:.98rem;
  letter-spacing:.02em;
  border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn:hover{ transform:translateY(-2px); }
.btn--gold{ background:linear-gradient(135deg,var(--gold-light),var(--gold)); color:var(--maroon-dark); box-shadow:0 14px 30px -12px rgba(201,162,39,.65); }
.btn--gold:hover{ box-shadow:0 18px 34px -10px rgba(201,162,39,.8); }
.btn--outline{ border-color:currentColor; color:inherit; background:transparent; }
.btn--outline:hover{ background:rgba(255,255,255,.08); }
.btn--maroon{ background:var(--maroon); color:var(--gold-pale); }
.btn--maroon:hover{ background:var(--maroon-dark); }
.btn--block{ width:100%; }
.btn--sm{ padding:10px 20px; font-size:.86rem; }

.tag{
  display:inline-block; padding:5px 14px; border-radius:100px;
  background:var(--maroon-tint); color:var(--maroon); font-size:.78rem;
  font-weight:600; letter-spacing:.03em;
}

.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width: 980px){
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 620px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
}

/* ---------- Arch signature divider ---------- */
.arch-row{ line-height:0; display:block; width:100%; overflow:hidden; }
.arch-row svg{ width:100%; height:auto; display:block; }
.arch-row--gold{ color:var(--gold-pale); }
.arch-row--ivory{ color:var(--ivory); }
.arch-row--maroon{ color:var(--maroon); }
.arch-row--ink{ color:var(--ink); }
.arch-row--cream{ color:var(--ivory-deep); }
.arch-row--flip svg{ transform:rotate(180deg); }

/* corner flourish */
.flourish{ width:46px; height:46px; margin:0 auto 18px; color:var(--gold); }

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--ink); color:var(--ivory-deep);
  font-size:.82rem; letter-spacing:.02em;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:9px; padding-bottom:9px; gap:16px; flex-wrap:wrap; }
.topbar-info{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.topbar-info a{ display:inline-flex; align-items:center; gap:7px; color:var(--gold-pale); transition:color .2s; }
.topbar-info a:hover{ color:var(--gold-light); }
.topbar-info svg{ width:14px; height:14px; }

/* ---------- Header ---------- */
header.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(251,246,236,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease;
}
header.site-header.is-scrolled{ box-shadow:0 10px 30px -18px rgba(33,23,18,.35); }
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0; gap:18px;
}
.brand{ display:flex; align-items:center; gap:12px; flex:none; }
.brand img{ height:68px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-family:var(--font-display); font-size:1.28rem; color:var(--maroon-dark); font-weight:700; }
.brand-text span{ font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color:var(--marigold); font-weight:600; }

nav.main-nav{ display:flex; align-items:center; gap:2px; }
nav.main-nav a{
  padding:10px 15px; font-size:.92rem; font-weight:500; color:var(--text-soft);
  border-radius:100px; transition:background .2s, color .2s;
  position:relative;
}
nav.main-nav a:hover, nav.main-nav a.active{ background:var(--maroon-tint); color:var(--maroon); }

.header-actions{ display:flex; align-items:center; gap:10px; flex:none; }
.lang-toggle{
  display:flex; align-items:center; background:var(--ivory-deep); border-radius:100px; padding:4px; border:1px solid var(--line);
}
.lang-toggle button{
  border:none; background:transparent; padding:7px 13px; border-radius:100px; font-size:.78rem; font-weight:700;
  color:var(--text-soft); letter-spacing:.03em; transition:all .2s;
}
.lang-toggle button.is-active{ background:var(--maroon); color:var(--gold-pale); }

.hamburger{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; }
.hamburger span{ width:24px; height:2px; background:var(--maroon-dark); border-radius:2px; }

@media (max-width: 1080px){
  nav.main-nav{
    position:fixed; inset:0 0 0 auto; width:min(320px,86vw); height:100vh;
    background:var(--ivory); flex-direction:column; align-items:stretch;
    padding:100px 26px 26px; gap:4px; box-shadow:-20px 0 50px rgba(0,0,0,.2);
    transform:translateX(100%); transition:transform .35s ease; overflow-y:auto;
  }
  nav.main-nav.is-open{ transform:translateX(0); }
  nav.main-nav a{ padding:14px 16px; font-size:1.05rem; }
  .hamburger{ display:flex; }
  .brand-text strong{ font-size:1.08rem; }
  .brand img{ height:54px; }
}
.nav-scrim{ display:none; position:fixed; inset:0; background:rgba(20,14,10,.45); z-index:190; }
.nav-scrim.is-open{ display:block; }

/* ---------- Hero slider (home) ---------- */
.hero-slider{ position:relative; height:min(92vh,780px); min-height:520px; overflow:hidden; background:var(--ink); }
.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.2s ease;
  background-size:cover; background-position:center;
}
.hero-slide.is-active{ opacity:1; }
.hero-slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(24,15,11,.55) 0%, rgba(24,15,11,.35) 40%, rgba(24,15,11,.78) 100%);
}
.hero-content{
  position:relative; z-index:5; height:100%; display:flex; align-items:center;
}
.hero-content .container{ width:100%; }
.hero-content .inner{ max-width:700px; color:var(--ivory); text-align:left; }
.hero-content .eyebrow{ color:var(--marigold-light); }
.hero-content h1{
  color:var(--white); font-size:clamp(2.3rem,5.4vw,4.2rem); margin-bottom:.32em; text-shadow:0 4px 24px rgba(0,0,0,.35);
}
.hero-content p{ font-size:1.12rem; color:var(--ivory-deep); max-width:560px; margin-bottom:1.6em; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-caption{
  position:absolute; z-index:5; right:30px; bottom:110px; color:var(--ivory-deep);
  font-family:var(--font-display); font-style:italic; font-size:1.05rem; text-align:right; max-width:260px; display:none;
}
@media(min-width:860px){ .hero-caption{ display:block; } }

.hero-dots{ position:absolute; z-index:6; bottom:36px; left:0; right:0; display:flex; justify-content:center; gap:10px; }
.hero-dots button{
  width:34px; height:4px; border-radius:4px; border:none; background:rgba(255,255,255,.35); padding:0; transition:background .3s;
}
.hero-dots button.is-active{ background:var(--gold-light); }
.hero-arrows{ position:absolute; z-index:6; bottom:32px; right:24px; display:flex; gap:10px; }
@media(min-width:860px){ .hero-arrows{ right:40px; } }
.hero-arrow{
  width:42px; height:42px; border-radius:50%; border:1.5px solid rgba(255,255,255,.55); background:rgba(0,0,0,.15);
  color:var(--ivory); display:flex; align-items:center; justify-content:center; transition:background .2s;
}
.hero-arrow:hover{ background:rgba(255,255,255,.2); }
.hero-arrow svg{ width:18px; height:18px; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner{
  position:relative; min-height:340px; display:flex; align-items:center;
  background-size:cover; background-position:center; color:var(--white); overflow:hidden;
}
.page-banner::after{ content:""; position:absolute; inset:0; background:linear-gradient(120deg, rgba(69,12,22,.92), rgba(33,23,18,.66)); }
.page-banner .container{ position:relative; z-index:2; padding-top:60px; padding-bottom:70px; }
.breadcrumb{ font-size:.85rem; color:var(--gold-pale); margin-bottom:14px; letter-spacing:.02em; }
.breadcrumb a{ color:var(--gold-light); }
.breadcrumb span{ opacity:.6; margin:0 8px; }
.page-banner h1{ color:var(--white); font-size:clamp(2rem,4.4vw,3.2rem); margin-bottom:.2em; }
.page-banner p{ color:var(--ivory-deep); max-width:600px; font-size:1.05rem; margin-bottom:0; }

/* ---------- Intro strip ---------- */
.intro-strip{ padding:46px 0; border-bottom:1px solid var(--line); }
.intro-strip .container{ display:flex; gap:34px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.intro-strip p{ margin:0; max-width:640px; font-size:1.06rem; color:var(--text-soft); }
.intro-chip{ display:flex; align-items:center; gap:10px; font-size:.92rem; color:var(--maroon); font-weight:600; }
.intro-chip svg{ width:20px; height:20px; flex:none; color:var(--marigold); }

/* ---------- Event / facility cards ---------- */
.event-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:30px 26px; transition:transform .3s ease, box-shadow .3s ease, border-color .3s;
  height:100%;
}
.event-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-sm); border-color:transparent; }
.event-card .icon{
  width:52px; height:52px; border-radius:14px; background:var(--maroon-tint); color:var(--maroon);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.event-card .icon svg{ width:26px; height:26px; }
.event-card h3{ font-size:1.28rem; margin-bottom:.35em; }
.event-card p{ color:var(--text-soft); font-size:.95rem; margin-bottom:0; }

.facility-row{
  display:flex; gap:18px; align-items:flex-start; padding:22px 0; border-bottom:1px solid var(--line);
}
.facility-row:last-child{ border-bottom:none; }
.facility-row .icon{
  width:48px; height:48px; border-radius:12px; background:var(--gold-pale); color:var(--maroon-dark);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.facility-row .icon svg{ width:24px; height:24px; }
.facility-row h4{ font-family:var(--font-display); font-size:1.15rem; color:var(--maroon-dark); margin:0 0 .25em; }
.facility-row p{ margin:0; color:var(--text-soft); font-size:.94rem; }

/* ---------- Wedding journey timeline ---------- */
.journey{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; counter-reset:step; }
@media(max-width:980px){ .journey{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .journey{ grid-template-columns:1fr; } }
.journey-step{
  background:var(--white); border-radius:var(--radius-md); padding:28px 22px; position:relative;
  border:1px solid var(--line); counter-increment:step;
}
.journey-step::before{
  content:counter(step,decimal-leading-zero);
  font-family:var(--font-display); font-size:2.2rem; color:var(--gold); font-weight:600; display:block; margin-bottom:10px;
}
.journey-step h3{ font-size:1.2rem; margin-bottom:.4em; }
.journey-step p{ font-size:.92rem; color:var(--text-soft); margin-bottom:0; }

/* ---------- Image + text split ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
@media(max-width:900px){ .split{ grid-template-columns:1fr; gap:32px; } }
.split.reverse .split-media{ order:2; }
.split-media{ position:relative; }
.split-media img{ border-radius:var(--radius-lg); width:100%; height:100%; object-fit:cover; box-shadow:var(--shadow); }
.split-media .frame-tag{
  position:absolute; bottom:-20px; left:-20px; background:var(--maroon); color:var(--gold-pale);
  padding:16px 22px; border-radius:var(--radius-md); box-shadow:var(--shadow-sm); font-family:var(--font-display); font-size:1.05rem;
  display:none;
}
@media(min-width:640px){ .split-media .frame-tag{ display:block; } }

/* ---------- Gallery ---------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.filter-btn{
  border:1.5px solid var(--line); background:var(--white); padding:9px 20px; border-radius:100px;
  font-size:.88rem; font-weight:600; color:var(--text-soft); transition:all .2s;
}
.filter-btn.is-active, .filter-btn:hover{ background:var(--maroon); color:var(--gold-pale); border-color:var(--maroon); }
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media(max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .gallery-grid{ grid-template-columns:1fr; } }
.gallery-item{
  position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; aspect-ratio:4/5;
  background:var(--ivory-deep);
}
.gallery-item.wide{ aspect-ratio:4/3; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0; padding:16px; color:var(--white); font-size:.85rem; font-weight:600;
  background:linear-gradient(0deg, rgba(20,12,8,.82), transparent);
  opacity:0; transition:opacity .3s;
}
.gallery-item:hover .cap{ opacity:1; }

.lightbox{
  position:fixed; inset:0; background:rgba(15,9,6,.94); z-index:400; display:none;
  align-items:center; justify-content:center; padding:30px;
}
.lightbox.is-open{ display:flex; }
.lightbox img{ max-width:min(1100px,92vw); max-height:82vh; border-radius:10px; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav{
  position:absolute; background:rgba(255,255,255,.12); color:var(--white); border:1px solid rgba(255,255,255,.3);
  width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.lightbox-close{ top:26px; right:26px; }
.lightbox-nav svg, .lightbox-close svg{ width:20px; height:20px; }
.lightbox-prev{ left:20px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:20px; top:50%; transform:translateY(-50%); }

/* ---------- Testimonials ---------- */
.testi-card{
  background:var(--white); border-radius:var(--radius-md); padding:30px 28px; border:1px solid var(--line);
  height:100%; display:flex; flex-direction:column;
}
.testi-stars{ color:var(--marigold); letter-spacing:2px; margin-bottom:12px; font-size:1rem; }
.testi-card p{ font-style:italic; color:var(--text-soft); flex:1; }
.testi-name{ display:flex; align-items:center; gap:12px; margin-top:14px; }
.testi-avatar{
  width:44px; height:44px; border-radius:50%; background:var(--maroon); color:var(--gold-pale);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; flex:none;
}
.testi-name strong{ display:block; font-size:.94rem; color:var(--maroon-dark); }
.testi-name span{ font-size:.8rem; color:var(--text-soft); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--maroon-dark),var(--maroon) 60%, var(--maroon-soft));
  color:var(--ivory); border-radius:var(--radius-lg); padding:56px 44px; position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; inset:0; opacity:.14; background-image:radial-gradient(circle,var(--gold) 1.5px, transparent 1.5px);
  background-size:22px 22px;
}
.cta-inner{ position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:26px; flex-wrap:wrap; }
.cta-banner h2{ color:var(--white); margin-bottom:.2em; font-size:clamp(1.6rem,3vw,2.3rem); }
.cta-banner p{ color:var(--gold-pale); margin-bottom:0; }
.cta-phone{ font-family:var(--font-display); font-size:2rem; color:var(--gold-light); font-weight:700; }

/* ---------- FAQ ---------- */
.faq-item{
  border:1px solid var(--line); border-radius:var(--radius-md); margin-bottom:14px; overflow:hidden; background:var(--white);
}
.faq-item summary{
  padding:20px 24px; font-weight:600; font-family:var(--font-display); font-size:1.12rem; color:var(--maroon-dark);
  cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:1.5rem; color:var(--gold); flex:none; transition:transform .25s; font-family:var(--font-body);
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item .faq-a{ padding:0 24px 22px; color:var(--text-soft); }

/* ---------- Forms ---------- */
.form-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:38px; box-shadow:var(--shadow-sm); }
.gform-embed{ width:100%; border-radius:var(--radius-md); overflow:hidden; background:var(--white); }
.gform-embed iframe{ display:block; width:100%; border:0; }
@media (max-width:640px){ .form-card{ padding:24px; } .gform-embed iframe{ height:1180px; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.86rem; font-weight:600; color:var(--maroon-dark); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1.5px solid var(--line); background:var(--ivory);
  color:var(--text); transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); outline:none; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:620px){ .field-row{ grid-template-columns:1fr; } }
.form-note{ font-size:.82rem; color:var(--text-soft); margin-top:10px; }

/* ---------- Contact info cards ---------- */
.contact-card{
  display:flex; gap:16px; align-items:flex-start; background:var(--white); border:1px solid var(--line);
  border-radius:var(--radius-md); padding:24px; height:100%;
}
.contact-card .icon{ width:46px; height:46px; border-radius:12px; background:var(--maroon-tint); color:var(--maroon); display:flex; align-items:center; justify-content:center; flex:none; }
.contact-card .icon svg{ width:22px; height:22px; }
.contact-card h4{ font-family:var(--font-display); font-size:1.1rem; color:var(--maroon-dark); margin:0 0 .3em; }
.contact-card p, .contact-card a{ margin:0; color:var(--text-soft); font-size:.94rem; }
.map-embed{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-sm); }
.map-embed iframe{ width:100%; height:380px; border:0; display:block; }

/* ---------- Legal pages ---------- */
.legal-content h2{ font-size:1.5rem; margin-top:1.6em; }
.legal-content h3{ font-size:1.15rem; margin-top:1.2em; color:var(--maroon); }
.legal-content p, .legal-content li{ color:var(--text-soft); }
.legal-content ul{ padding-left:22px; list-style:disc; margin-bottom:1em; }
.legal-content li{ margin-bottom:.4em; }
.legal-updated{ color:var(--marigold); font-weight:600; font-size:.88rem; margin-bottom:2em; display:block; }

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--ink); color:var(--ivory-deep); padding-top:0; }
.footer-top{ padding:64px 0 40px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px; }
@media(max-width:980px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:620px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ height:60px; }
.footer-brand strong{ font-family:var(--font-display); font-size:1.3rem; color:var(--gold-light); }
footer.site-footer p{ color:rgba(251,246,236,.68); font-size:.92rem; }
.footer-col h5{
  font-family:var(--font-body); text-transform:uppercase; letter-spacing:.12em; font-size:.78rem;
  color:var(--gold); margin-bottom:18px; font-weight:700;
}
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul a{ color:rgba(251,246,236,.78); font-size:.92rem; transition:color .2s; }
.footer-col ul a:hover{ color:var(--gold-light); }
.footer-col .contact-line{ display:flex; gap:10px; align-items:flex-start; margin-bottom:14px; font-size:.9rem; color:rgba(251,246,236,.78); }
.footer-col .contact-line svg{ width:17px; height:17px; flex:none; margin-top:3px; color:var(--gold); }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(251,246,236,.25);
  display:flex; align-items:center; justify-content:center; transition:all .2s;
}
.social-row a:hover{ background:var(--gold); color:var(--ink); border-color:var(--gold); }
.social-row svg{ width:17px; height:17px; }
.footer-bottom{
  border-top:1px solid rgba(251,246,236,.14); padding:22px 0; display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap; font-size:.84rem; color:rgba(251,246,236,.55);
}
.footer-bottom-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom-links a:hover{ color:var(--gold-light); }

/* ---------- Sticky mobile call button ---------- */
.sticky-call{
  position:fixed; right:22px; bottom:22px; z-index:150;
  width:60px; height:60px; border-radius:50%; background:var(--marigold); color:var(--white);
  display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -8px rgba(217,131,36,.7);
  animation:pulse 2.6s infinite;
}
.sticky-call svg{ width:26px; height:26px; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(217,131,36,.55), 0 14px 30px -8px rgba(217,131,36,.7); }
  70%{ box-shadow:0 0 0 16px rgba(217,131,36,0), 0 14px 30px -8px rgba(217,131,36,.7); }
  100%{ box-shadow:0 0 0 0 rgba(217,131,36,0), 0 14px 30px -8px rgba(217,131,36,.7); }
}

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- Stat strip ---------- */
.stat-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
@media(max-width:700px){ .stat-strip{ grid-template-columns:repeat(2,1fr); } }
.stat-strip .num{ font-family:var(--font-display); font-size:2.6rem; color:var(--gold-light); font-weight:700; }
.stat-strip .lbl{ font-size:.86rem; letter-spacing:.05em; color:var(--ivory-deep); text-transform:uppercase; }

/* ---------- 404-ish empty state ---------- */
.empty-note{ text-align:center; padding:40px 0; color:var(--text-soft); }

/* ---------- Blog ---------- */
.post-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; height:100%; display:flex; flex-direction:column; transition:transform .3s, box-shadow .3s; }
.post-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-sm); }
.post-card img{ height:210px; width:100%; object-fit:cover; }
.post-card-body{ padding:24px; flex:1; display:flex; flex-direction:column; }
.post-meta{ font-size:.78rem; color:var(--marigold); font-weight:600; letter-spacing:.03em; margin-bottom:8px; text-transform:uppercase; }
.post-card h3{ font-size:1.25rem; margin-bottom:.4em; }
.post-card p{ color:var(--text-soft); font-size:.93rem; flex:1; }
.post-read{ font-size:.86rem; font-weight:700; color:var(--maroon); display:inline-flex; align-items:center; gap:6px; margin-top:10px; }

article.blog-article{ max-width:760px; margin:0 auto; }
article.blog-article h2{ margin-top:1.6em; }
article.blog-article p{ color:var(--text-soft); font-size:1.04rem; }
article.blog-article img{ border-radius:var(--radius-md); margin:1.6em 0; }
