@font-face {
  font-family: "Noto Sans Bengali";
  src: url("../fonts/NotoSansBengali-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Bengali";
  src: url("../fonts/NotoSerifBengali-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #0e3b33;
  --teal-2: #1b5247;
  --mid-teal: #3f6b5e;
  --sage: #a8beb2;
  --sage-light: #dde7e1;
  --ivory: #f6f1e5;
  --ivory-2: #fffdf8;
  --gold: #c7a45d;
  --gold-light: #eadcb7;
  --charcoal: #1f2a28;
  --muted: #5f6e69;
  --danger: #a13a33;
  --danger-bg: #fff2ef;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(14, 59, 51, 0.11);
  --shadow-small: 0 10px 30px rgba(14, 59, 51, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory-2);
  color: var(--charcoal);
  font-family: "Noto Sans Bengali", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: "Noto Serif Bengali", serif;
  font-weight: 760;
  line-height: 1.28;
  text-wrap: balance;
}

h1 { font-size: clamp(2.55rem, 6vw, 5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.65rem); }
p { margin: 0 0 18px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container-narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.section { padding: 108px 0; }
.section-compact { padding: 72px 0; }
.section-ivory { background: var(--ivory); }
.section-teal { background: var(--teal); color: var(--white); }
.section-sage { background: var(--sage-light); }

.section-teal h2,
.section-teal h3,
.section-teal .eyebrow { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--mid-teal);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.section-teal .lead { color: rgba(255,255,255,.75); }
.section-heading { margin-bottom: 48px; }
.section-heading.center { text-align: center; }
.section-heading.center .lead { margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--teal);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 13px 26px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(14,59,51,.2); background: var(--teal-2); }
.button-light { border-color: var(--white); background: var(--white); color: var(--teal); }
.button-outline { border-color: rgba(14,59,51,.25); background: transparent; color: var(--teal); }
.button-outline-light { border-color: rgba(255,255,255,.45); background: transparent; color: var(--white); }
.button-small { min-height: 44px; padding: 9px 19px; font-size: .9rem; }
.button-full { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(14,59,51,.08);
  background: rgba(255,253,248,.93);
  backdrop-filter: blur(18px);
}

.header-inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; width: 250px; text-decoration: none; }
.brand img { width: 100%; height: auto; }
.primary-navigation { display: flex; align-items: center; gap: 24px; }
.site-menu { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.site-menu a { color: var(--charcoal); font-size: .93rem; font-weight: 650; text-decoration: none; }
.site-menu a:hover, .site-menu a:focus-visible { color: var(--teal-2); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 50%; background: var(--ivory); }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--teal); transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; padding: 86px 0 82px; background: linear-gradient(135deg, var(--ivory-2) 0%, var(--ivory) 52%, #e3ece6 100%); }
.hero::before { content: ""; position: absolute; width: 450px; height: 450px; right: -140px; top: -160px; border: 1px solid rgba(199,164,93,.35); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 280px; height: 280px; left: -150px; bottom: -160px; border: 70px solid rgba(168,190,178,.18); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; }
.hero h1 em { display: block; color: var(--gold); font-style: normal; }
.hero-copy > p { max-width: 680px; color: var(--muted); font-size: 1.18rem; }
.trust-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 24px; color: var(--mid-teal); font-size: .92rem; }
.trust-note svg { flex: 0 0 21px; margin-top: 4px; fill: var(--gold); }

.sanctuary-card { position: relative; min-height: 520px; border: 1px solid rgba(199,164,93,.36); border-radius: 180px 180px var(--radius) var(--radius); background: var(--teal); box-shadow: var(--shadow); color: var(--white); overflow: hidden; }
.sanctuary-card::before { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 155px 155px 18px 18px; }
.sanctuary-light { position: absolute; width: 4px; height: 175px; left: 50%; top: 120px; border-radius: 50%; background: linear-gradient(180deg, transparent, var(--gold), transparent); box-shadow: 0 0 30px rgba(199,164,93,.55); transform: translateX(-50%); }
.sanctuary-content { position: absolute; z-index: 1; inset: auto 46px 48px; text-align: center; }
.sanctuary-content span { display: block; margin-bottom: 9px; color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sanctuary-content strong { display: block; font-family: "Noto Serif Bengali"; font-size: 1.72rem; line-height: 1.45; }

.trust-strip { position: relative; z-index: 3; margin-top: -1px; background: var(--teal); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; min-height: 112px; padding: 22px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border-radius: 50%; background: rgba(199,164,93,.16); color: var(--gold-light); font-weight: 800; }
.trust-item strong { display: block; font-size: .98rem; }
.trust-item small { display: block; margin-top: 2px; color: rgba(255,255,255,.66); font-size: .75rem; line-height: 1.4; }

.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.concern-card, .value-card, .step-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(14,59,51,.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.concern-card::before { content: ""; display: block; width: 44px; height: 4px; margin-bottom: 25px; border-radius: 3px; background: var(--gold); }
.concern-card p, .value-card p, .step-card p { margin-bottom: 0; color: var(--muted); }
.notice { display: flex; gap: 16px; margin-top: 30px; padding: 22px 25px; border: 1px solid var(--gold-light); border-radius: var(--radius-small); background: #fffaf0; color: #594d34; }
.notice strong { color: var(--teal); }
.notice-mark { display: grid; flex: 0 0 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--white); font-weight: 900; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 82px; }
.quote-card { position: relative; padding: 54px; border-radius: var(--radius); background: var(--teal); color: var(--white); box-shadow: var(--shadow); }
.quote-card::before { content: "“"; position: absolute; right: 30px; top: -15px; color: rgba(199,164,93,.22); font-family: Georgia, serif; font-size: 11rem; line-height: 1; }
.quote-card blockquote { position: relative; z-index: 1; margin: 0 0 22px; font-family: "Noto Serif Bengali"; font-size: 1.8rem; line-height: 1.55; }
.quote-card cite { color: var(--gold-light); font-style: normal; font-size: .9rem; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: 12px; padding-left: 33px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--sage-light); color: var(--teal); font-size: .72rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; counter-reset: process; }
.step-card { counter-increment: process; }
.step-card::before { content: counter(process, bengali); display: grid; width: 46px; height: 46px; margin-bottom: 25px; place-items: center; border-radius: 50%; background: var(--ivory); color: var(--teal); font-family: "Noto Serif Bengali"; font-weight: 800; }

.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card { padding: 28px; box-shadow: none; }
.value-card .symbol { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; border-radius: 14px; background: var(--sage-light); color: var(--teal); font-weight: 850; }

.safety-box { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 32px; border: 1px solid #efbcb6; border-radius: var(--radius); background: var(--danger-bg); }
.safety-icon { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--danger); color: var(--white); font-size: 1.25rem; font-weight: 900; }
.safety-box h3 { color: #722822; }
.safety-box p:last-child { margin-bottom: 0; }

.faq-list { display: grid; gap: 13px; }
.faq-list details { border: 1px solid rgba(14,59,51,.12); border-radius: var(--radius-small); background: var(--white); overflow: hidden; }
.faq-list summary { position: relative; padding: 22px 62px 22px 24px; color: var(--teal); font-weight: 760; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 22px; top: 50%; width: 28px; height: 28px; border-radius: 50%; background: var(--ivory); text-align: center; line-height: 28px; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 24px 22px; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }

.final-cta { position: relative; overflow: hidden; padding: 66px; border-radius: 34px; background: var(--teal); color: var(--white); text-align: center; box-shadow: var(--shadow); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 230px; height: 230px; border: 55px solid rgba(199,164,93,.1); border-radius: 50%; }
.final-cta::before { left: -125px; top: -130px; }
.final-cta::after { right: -120px; bottom: -145px; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); }
.final-cta p { max-width: 660px; margin-inline: auto; color: rgba(255,255,255,.76); }
.final-cta .cta-row { justify-content: center; }

.page-hero { padding: 78px 0 70px; background: var(--ivory); text-align: center; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.page-hero p { max-width: 750px; margin-inline: auto; color: var(--muted); font-size: 1.12rem; }
.content-card { padding: 48px; border: 1px solid rgba(14,59,51,.1); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.content-card + .content-card { margin-top: 24px; }
.content-card h2 { font-size: 2rem; }
.content-card ul, .content-card ol { padding-left: 24px; }
.content-card li { margin-bottom: 10px; }
.contact-panel { display: grid; grid-template-columns: 1fr .7fr; gap: 28px; }
.contact-card { padding: 38px; border-radius: var(--radius); background: var(--teal); color: var(--white); }
.contact-card h2 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.75); }
.contact-number { display: inline-block; margin: 10px 0 24px; color: var(--gold-light); font-size: 1.35rem; font-weight: 850; text-decoration: none; }

.post-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post-card { overflow: hidden; border: 1px solid rgba(14,59,51,.1); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.post-card-content { padding: 28px; }
.post-card h2 { font-size: 1.45rem; }
.post-card a { text-decoration: none; }
.post-meta { color: var(--muted); font-size: .82rem; }

.site-footer { padding-top: 76px; background: #092e28; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .7fr .9fr; gap: 70px; }
.footer-brand img { width: 300px; margin-bottom: 25px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer h2 { color: var(--white); font-family: "Noto Sans Bengali"; font-size: 1.08rem; }
.site-footer p { font-size: .92rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a, .footer-bottom a { text-decoration: none; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--gold-light); }
.footer-phone { color: var(--gold-light); font-size: 1.2rem; font-weight: 800; text-decoration: none; }
.footer-social { display: block; width: max-content; margin-top: 10px; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 700; text-decoration: none; }
.footer-social:hover, .footer-social:focus-visible { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 62px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; font-size: .85rem; }

.floating-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 10px 18px; border-radius: 999px; background: #25d366; color: #072b21; box-shadow: 0 14px 32px rgba(14,59,51,.25); font-weight: 800; text-decoration: none; }
.floating-whatsapp svg { width: 25px; height: 25px; fill: currentColor; }

.landing-body { background: var(--ivory-2); }
.landing-header { padding: 22px 0; border-bottom: 1px solid rgba(14,59,51,.08); background: var(--white); }
.landing-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.landing-header .brand { width: 230px; }
.landing-hero { padding: 74px 0; background: linear-gradient(135deg, #0b342d, var(--teal-2)); color: var(--white); }
.landing-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 60px; }
.landing-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5.8vw, 4.8rem); }
.landing-hero h1 em { color: var(--gold-light); font-style: normal; }
.landing-hero p { max-width: 680px; color: rgba(255,255,255,.78); font-size: 1.16rem; }
.landing-panel { padding: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.landing-panel h2 { color: var(--white); font-size: 1.65rem; }
.landing-panel ul { margin: 20px 0 28px; padding: 0; list-style: none; }
.landing-panel li { position: relative; margin-bottom: 10px; padding-left: 28px; color: rgba(255,255,255,.8); }
.landing-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }
.pas-label { display: inline-block; margin-bottom: 14px; color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pas-card { padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-small); }
.pas-card:nth-child(2) { background: var(--teal); color: var(--white); }
.pas-card:nth-child(2) h3, .pas-card:nth-child(2) .pas-label { color: var(--white); }
.pas-card:nth-child(2) p { color: rgba(255,255,255,.72); }
.pas-card p { color: var(--muted); }
.landing-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.proof-item { padding: 28px; border: 1px solid rgba(14,59,51,.1); border-radius: var(--radius-small); background: var(--ivory); }
.proof-item strong { display: block; margin-bottom: 7px; color: var(--teal); }
.proof-item p { margin: 0; color: var(--muted); font-size: .92rem; }
.sticky-mobile-cta { display: none; }

@media (max-width: 1040px) {
  .brand { width: 220px; }
  .site-menu { gap: 14px; }
  .primary-navigation { gap: 14px; }
  .hero-grid, .split, .landing-hero-grid { gap: 46px; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; cursor: pointer; }
  .primary-navigation { position: fixed; inset: 92px 0 auto; display: none; max-height: calc(100vh - 92px); padding: 24px 20px 30px; background: var(--ivory-2); box-shadow: var(--shadow); overflow: auto; }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .site-menu { display: grid; gap: 0; }
  .primary-navigation .site-menu a { display: block; padding: 13px 4px; border-bottom: 1px solid rgba(14,59,51,.08); }
  .primary-navigation .button { width: 100%; margin-top: 20px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .split, .landing-hero-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero .eyebrow, .hero .cta-row, .hero .trust-note { justify-content: center; }
  .sanctuary-card { width: min(100%, 520px); margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .card-grid, .process-grid, .post-list, .pas-grid { grid-template-columns: repeat(2,1fr); }
  .pas-card:last-child { grid-column: 1 / -1; }
  .landing-proof { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .container-narrow { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 78px; }
  .brand { width: 190px; }
  .primary-navigation { inset: 78px 0 auto; max-height: calc(100vh - 78px); }
  .hero { padding: 62px 0; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .cta-row { display: grid; }
  .button { width: 100%; }
  .sanctuary-card { min-height: 420px; border-radius: 145px 145px 22px 22px; }
  .sanctuary-light { top: 92px; height: 140px; }
  .sanctuary-content { inset: auto 28px 38px; }
  .trust-grid, .card-grid, .process-grid, .value-grid, .post-list, .pas-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-item:last-child { border-bottom: 0; }
  .pas-card:last-child { grid-column: auto; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 34px; }
  .concern-card, .value-card, .step-card, .content-card, .contact-card, .landing-panel, .pas-card { padding: 26px; }
  .quote-card { padding: 38px 28px; }
  .quote-card blockquote { font-size: 1.55rem; }
  .safety-box { grid-template-columns: 1fr; padding: 26px; }
  .final-cta { padding: 48px 24px; border-radius: 24px; }
  .page-hero { padding: 58px 0 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; margin-top: 42px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; padding: 10px; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .landing-header-inner .button { display: none; }
  .landing-header .brand { width: 200px; }
  .landing-hero { padding: 58px 0; }
  .landing-hero-grid { gap: 36px; }
  .sticky-mobile-cta { position: fixed; z-index: 1000; inset: auto 0 0; display: block; padding: 10px 14px; background: rgba(255,253,248,.96); box-shadow: 0 -8px 24px rgba(14,59,51,.12); }
  .landing-body .floating-whatsapp { display: none; }
  .landing-body .site-footer { padding-bottom: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
